]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMProject.h
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMProject.h
index 00fff7c63066c44bf1dbb1e79858b55300f336e0..b6f5662c3dd3784c15826aafcd2710714442b4b6 100644 (file)
@@ -61,7 +61,7 @@ public:
   bool SetVersion(const std::string& version, std::string*& result);
   bool SetBuildPath(const std::string& path, std::string*& result);
 
-  bool CreatePackage(
+  modelCDMIProjectTreeNode* CreatePackage(
       const std::string& name,
       std::string*& result,
       const std::string& authors = "info-dev",
@@ -69,17 +69,17 @@ public:
       const std::string& version = "1.0.0",
       const std::string& description = "no description"
   );
-  bool CreateLibrary(
+  modelCDMIProjectTreeNode* CreateLibrary(
       const std::string& name,
       std::string*& result,
       const std::string& path = "/lib"
   );
-  bool CreateApplication(
+  modelCDMIProjectTreeNode* CreateApplication(
       const std::string& name,
       std::string*& result,
       const std::string& path = "/appli"
   );
-  bool CreateBlackBox(
+  modelCDMIProjectTreeNode* CreateBlackBox(
       const std::string& name,
       const std::string& package = "", //if empty converts into "/bbtk_*projectName*_PKG"
       const std::string& authors = "unknown",