00001 #ifndef __EMCDBMS_H__ 00002 #define __EMCDBMS_H__ 00003 00004 #ifndef __EMCMANAGEABLE_H__ 00005 # include "emcManageable.h" 00006 #endif 00007 #include <string> 00008 00015 class emcDBMS 00016 { 00017 public: 00018 00019 static const char* asString(); 00020 00021 static bool set(const char*); 00022 00023 static emcManageable::EStorage get(); 00024 00025 private: 00026 static emcManageable::EStorage fgStorage; 00027 00028 }; 00029 00030 #endif