]> Creatis software - crea.git/blob - lib/creaDevManagerLib/controlCDMMain.h
Feature #1711
[crea.git] / lib / creaDevManagerLib / controlCDMMain.h
1 /*
2  * controlCDMMain.h
3  *
4  *  Created on: 13/11/2012
5  *      Author: daniel
6  */
7
8 #ifndef CONTROLCDMMAIN_H_
9 #define CONTROLCDMMAIN_H_
10
11 #include "modelCDMProject.h"
12
13 class controlCDMMain
14 {
15 public:
16   controlCDMMain();
17   ~controlCDMMain();
18   const modelCDMProject& GetActiveProject();
19   bool UpdateActiveProject();
20   const int OpenProject(const std::string& path);
21   bool CloseProject(const std::string& projectName);
22 private:
23   modelCDMProject* main;
24 };
25
26 #endif /* CONTROLCDMMAIN_H_ */