]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMPackage.h
Black Box view and folder structure implemented
[crea.git] / lib / creaDevManagerLib / modelCDMPackage.h
index 632b2ef768e88d000eca07b3949b9a896d52edc5..d79db954decff87a9da28034772a1bc2cfa13167 100644 (file)
@@ -39,7 +39,7 @@
 #include<vector>
 
 #include"modelCDMFolder.h"
-#include"modelCDMBlackBox.h"
+#include"modelCDMPackageSrc.h"
 
 class modelCDMPackage : public modelCDMFolder
 {
@@ -53,7 +53,7 @@ public:
   const std::string& GetAuthorsEmail() const;
   const std::string& GetVersion() const;
   const std::string& GetDescription() const;
-  const std::vector<modelCDMBlackBox*>& GetBlackBoxes() const;
+  modelCDMPackageSrc* GetSrc() const;
 
   bool SetAuthors(const std::string& authors, std::string*& result);
   bool SetAuthorsEmail(const std::string& email, std::string*& result);
@@ -76,7 +76,7 @@ private:
   std::string authorsEmail;
   std::string version;
   std::string description;
-  std::vector<modelCDMBlackBox*> blackBoxes;
+  modelCDMPackageSrc* src;
 
 };