///////////////////////////////////////////////// // $Id: IDbiCfg.hxx,v 1.1 2011/01/18 05:49:19 finch Exp $ /// /// \class COMET::IDbiCfg /// /// \brief Some utility functions for working with configurations /// /// messier@huhepl.harvard.edu /// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// #ifndef CFG_H #define CFG_H #ifndef STRING # include # define STRING #endif #ifndef REGISTRY_H # include "IDbiRegistry.hxx" #endif namespace COMET { class IDbiCfg { public: static void TDbiRegistryToString(std::string& s, const IDbiRegistry& r); static void StringToTDbiRegistry(IDbiRegistry& r, const char* s); private: IDbiCfg(); }; }; #endif // CFG_H ////////////////////////////////////////////////////////////////////////