]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMBlackBox.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMBlackBox.cpp
index 4d834927d61e08d6e3609d4b889ec595e5c732fe..daec9d4b8bf864997ad72cec4e5df6e2c2813619 100644 (file)
@@ -49,6 +49,7 @@ modelCDMBlackBox::modelCDMBlackBox()
 
 modelCDMBlackBox::modelCDMBlackBox(const std::string& path, const std::string& name, const int& level)
 {
+  std::cout << "creating black box: " + name + " in " + path + "\n";
   this->name = name;
   this->path = path;
   this->level = level;
@@ -332,6 +333,7 @@ modelCDMFile* modelCDMBlackBox::GetSourceFile() const
 
 const bool modelCDMBlackBox::Refresh(std::string*& result)
 {
+  std::cout << "refreshing black box: " << this->nameBlackBox << std::endl;
   std::string pathHeader = path + CDMUtilities::SLASH + "bb" + this->name + ".h";
 
   std::ifstream confFile;