#include #include using namespace std; #ifndef FLUXUS_SEARCHPATHS #define FLUXUS_SEARCHPATHS class SearchPaths { public: static SearchPaths* Get(); string GetFullPath(const string &Filename); void AddPath(const string &Path); private: SearchPaths() {} ~SearchPaths() {} vector m_Paths; static SearchPaths *m_Singleton; }; #endif