]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMProject.h
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMProject.h
index bafe63525e7448c3ba34ffa5d073365204af2b00..00fff7c63066c44bf1dbb1e79858b55300f336e0 100644 (file)
@@ -42,6 +42,7 @@
 #include "modelCDMLib.h"
 #include "modelCDMAppli.h"
 #include "modelCDMPackage.h"
+#include "modelCDMCMakeListsFile.h"
 
 class modelCDMProject : public modelCDMFolder
 {
@@ -52,7 +53,7 @@ public:
 
   void PopulateProject();
 
-  const std::string& GetName() const;
+  const std::string& GetNameProject() const;
   const std::string& GetVersion() const;
   const std::string& GetVersionDate() const;
   const std::string& GetBuildPath() const;
@@ -94,7 +95,7 @@ public:
 
 private:
 
-  std::string name;
+  std::string nameProject;
   std::string version;
   std::string versionDate;
   std::string buildPath;
@@ -102,6 +103,7 @@ private:
   modelCDMLib* lib;
   modelCDMAppli* appli;
   std::vector<modelCDMPackage*> packages;
+  modelCDMCMakeListsFile* CMakeLists;
 
 };