Salome HOME
mergefrom branch BR_V511_PR tag mergeto_trunk_03feb09
[modules/yacs.git] / src / engine / Container.cxx
index b7d093fe89ed83a16f98c15ebd69b3220f78b61d..08365dfb377efbd5967ec18eec05241715e4b8a5 100644 (file)
@@ -1,6 +1,27 @@
+//  Copyright (C) 2006-2008  CEA/DEN, EDF R&D
+//
+//  This library is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU Lesser General Public
+//  License as published by the Free Software Foundation; either
+//  version 2.1 of the License.
+//
+//  This library is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+//  Lesser General Public License for more details.
+//
+//  You should have received a copy of the GNU Lesser General Public
+//  License along with this library; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 #include "Container.hxx"
 #include "ComponentInstance.hxx"
 
+//#define _DEVDEBUG_
+#include "YacsTrace.hxx"
+
 using namespace std;
 using namespace YACS::ENGINE;
 
@@ -44,11 +65,13 @@ bool Container::isSupportingRTODefNbOfComp() const
 
 void Container::setProperty(const std::string& name, const std::string& value)
 {
+  DEBTRACE("Container::setProperty " << name << " " << value);
   _propertyMap[name]=value;
 }
 
 std::string Container::getProperty(const std::string& name)
 {
+  DEBTRACE("Container::getProperty " << name );
   return _propertyMap[name];
 }