]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMFile.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMFile.cpp
index 039de4784d1e55e029e84429a73f7b6ea8a0d98b..3f92ffe9b29a2a81e43b41db285c0860092ff0be 100644 (file)
@@ -46,6 +46,7 @@ modelCDMFile::modelCDMFile()
 
 modelCDMFile::modelCDMFile(const std::string& path, const std::string& name, const int& level)
 {
+  std::cout << "creating file: " + path + "\n";
   this->children.clear();
   this->level = level;
   this->name = name;
@@ -76,6 +77,7 @@ bool modelCDMFile::OpenFile(std::string*& result, const std::string& command)
 
 const bool modelCDMFile::Refresh(std::string*& result)
 {
+  //std::cout << "refreshing file " << this->name << std::endl;
   std::ifstream in((this->path).c_str());
   if(!in.is_open())
     {