/* * ControlCreaDevManagerMain.h * * Created on: 5/11/2012 * Author: daniel */ #ifndef CONTROLCREADEVMANAGERMAIN_H_ #define CONTROLCREADEVMANAGERMAIN_H_ #include #include "ModelCreaDevManagerTree.h" class ControlCreaDevManagerMain { public: ControlCreaDevManagerMain(); ~ControlCreaDevManagerMain(); const ModelCreaDevManagerTree& GetActiveProjects() const; bool LoadActiveProjects(); bool UpdateActiveProjects(); const int OpenProject(const std::string& path); bool CloseProject(const std::string& projectName); private: ModelCreaDevManagerTree projectsTree; }; #endif /* CONTROLCREADEVMANAGERMAIN_H_ */