#ifndef CONFIG_H #define CONFIG_H #include #include "Proxy.h" class ProxyEntryGeneric; class ProxyEntryStatic; class Config { public: static Config *CurrentConfig(); void AcquireConfig(); bool IsConfigValid(); protected: Config(); private: static Config *self; bool configValid; std::vector genericProxy; std::vector staticProxy; int ReadGenericProxy(); int ReadStaticProxy(); }; #endif