Program: bbtk
Module: $RCSfile: bbtkTranscriptor.cxx,v $ $
Language: C++
- Date: $Date: 2008/02/14 13:48:13 $
- Version: $Revision: 1.2 $
+ Date: $Date: 2008/02/14 13:53:01 $
+ Version: $Revision: 1.3 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
const std::string& nodeName)
{
// Current()->Add(nodeType,nodeName);\"
- m_Fp << "e->Add("\" << nodeType << "\", \"" << nodeName << "\");" << std::endl;
+ m_Fp << "e->Add(\"" << nodeType << "\", \"" << nodeName << "\");" << std::endl;
}
if (!mNoExecMode)
{
//Current()->GetPrototype()->bbGetBlackBox(nodeName)->bbExecute(true);
- m_Fp << "e->GetPrototype()->bbGetBlackBox("\" << nodeName << "\", true );" << std::endl;
+ m_Fp << "e->GetPrototype()->bbGetBlackBox(\"" << nodeName << "\", true );" << std::endl;
}
}
else
{
//Current()->AddToExecutionList(nodeName) ;
- m_Fp << "e->AddToExecutionList("\" << nodeName << "\");" << std::endl;
+ m_Fp << "e->AddToExecutionList(\"" << nodeName << "\");" << std::endl;
}
}