00001 00002 00003 00004 00005 00006 00007 00008 #ifndef CFG_CONFIGBUILDER_H 00009 #define CFG_CONFIGBUILDER_H 00010 00011 namespace cfg { 00012 class Config; 00014 // 00023 class ConfigBuilder { 00024 public: 00025 ConfigBuilder() { } 00026 virtual ~ConfigBuilder() { } 00027 00028 protected: 00029 void Publish(Config* cfg); 00030 }; 00031 } 00032 #endif // CFGCONFIGBUILDER_H 00033
1.3.5