TDbiCfg.hxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef CFG_H
00013 #define CFG_H
00014 #ifndef STRING
00015 # include <string>
00016 # define STRING
00017 #endif
00018 #ifndef REGISTRY_H
00019 # include "TDbiRegistry.hxx"
00020 #endif
00021
00022
00023 class TDbiCfg
00024 {
00025 public:
00026 static void TDbiRegistryToString(std::string& s, const TDbiRegistry& r);
00027 static void StringToTDbiRegistry(TDbiRegistry& r, const char* s);
00028 private:
00029 TDbiCfg();
00030 };
00031
00032
00033 #endif // CFG_H
00034
00035