#ifndef _SYSTEMDATA_H_ #define _SYSTEMDATA_H_ #include #include #include "FolderData.h" class GameData; class SystemData { public: SystemData(std::string name, std::string startPath, std::string extension, std::string command); ~SystemData(); FolderData* getRootFolder(); std::string getName(); std::string getStartPath(); std::string getExtension(); bool hasGamelist(); void launchGame(GameData* game); static void deleteSystems(); static void loadConfig(); static void writeExampleConfig(); static std::string getConfigPath(); static std::vector sSystemVector; private: std::string mName; std::string mStartPath; std::string mSearchExtension; std::string mLaunchCommand; void populateFolder(FolderData* folder); FolderData* mRootFolder; }; #endif