Inheritance diagram for Conf:

Public Member Functions | |
| Conf () | |
| void | Config () |
|
|
Definition at line 7 of file testConfigurable.cc. References CfgConfigurable::CommitDefaultConfig(), and Registry::Set(). 00007 {
00008 Registry r;
00009 r.Set("A",true);
00010 r.Set("B",'b');
00011 r.Set("C","c is for cookie");
00012 r.Set("D",60);
00013 r.Set("F",55.9);
00014 this->CommitDefaultConfig(r);
00015 }
|
|
|
Implements CfgConfigurable. Definition at line 16 of file testConfigurable.cc. References CfgConfigurable::GetConfig(). 00016 {
00017 std::cerr << "%%% Conf::Config(): " << this->GetConfig() << std::endl;
00018 }
|
1.3.9.1