osgEarth 2.1.1
|
Public Member Functions | |
LabelSourceOptions (const ConfigOptions &options=ConfigOptions()) | |
virtual Config | getConfig () const |
Protected Member Functions | |
virtual void | mergeConfig (const Config &conf) |
Private Member Functions | |
void | fromConfig (const Config &conf) |
Configuration options for a label source.
Definition at line 37 of file LabelSource.
osgEarth::Features::LabelSourceOptions::LabelSourceOptions | ( | const ConfigOptions & | options = ConfigOptions() | ) | [inline] |
Definition at line 40 of file LabelSource.
: DriverConfigOptions( options ) { fromConfig(_conf); }
void LabelSourceOptions::fromConfig | ( | const Config & | conf | ) | [private] |
Reimplemented from osgEarth::DriverConfigOptions.
Definition at line 31 of file LabelSource.cpp.
{
//nop
}
Config LabelSourceOptions::getConfig | ( | ) | const [virtual] |
Gets or sets the name of the object
Reimplemented from osgEarth::DriverConfigOptions.
Definition at line 44 of file LabelSource.cpp.
{ Config conf = DriverConfigOptions::getConfig(); return conf; }
void LabelSourceOptions::mergeConfig | ( | const Config & | conf | ) | [protected, virtual] |
Reimplemented from osgEarth::DriverConfigOptions.
Definition at line 37 of file LabelSource.cpp.
{ DriverConfigOptions::mergeConfig( conf ); fromConfig( conf ); }