fw4spl
appXml Namespace Reference

The bundle appXml allows to parse xml configuration of an application. See AppConfig for more details. More...

Classes

class  Plugin
 This class is started when the bundles is loaded. More...
 

Variables

static::fwRuntime::utils::GenericExecutableFactoryRegistrar< Pluginregistrar ("::appXml::Plugin")
 

Detailed Description

The bundle appXml allows to parse xml configuration of an application. See AppConfig for more details.

This bundle is automatically started at the launch of the application if it is present in the REQUIREMENTS of the application's Properties.cmake.

Example

1 set( NAME Tuto01Basic )
2 set( VERSION 0.1 )
3 set( TYPE APP )
4 set( DEPENDENCIES )
5 set( REQUIREMENTS
6  dataReg
7  servicesReg
8  guiQt # it will be automatically started when the application launches
9  fwlauncher
10  appXml # it will be automatically started when the application launches
11 )
12 bundleParam(appXml PARAM_LIST config PARAM_VALUES tutoBasicConfig)