Salome HOME
Copyright update 2022
[modules/yacs.git] / src / engine / Test / ComponentInstanceTest.hxx
index 88b4e887477285ee5f39454ad5a5ab4d21fd6e25..ba513e9915b8ea986c5dff670e9f7571a874af3e 100644 (file)
@@ -1,3 +1,22 @@
+// Copyright (C) 2006-2022  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, or (at your option) any later version.
+//
+// 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
+//
+
 #ifndef __COMPONENTINTANCETEST_HXX__
 #define __COMPONENTINTANCETEST_HXX__
 
@@ -12,12 +31,14 @@ namespace YACS
     public:
       ComponentInstanceTest1(const ComponentInstanceTest1& other);
       ComponentInstanceTest1(const std::string& name);
-      void load();
-      void unload();
-      bool isLoaded();
+      void load(Task *askingNode);
+      void unload(Task *askingNode);
+      bool isLoaded(Task *askingNode) const;
       std::string getKind() const;
+      std::string getKindForNode() const;
       ServiceNode* createNode(const std::string& name);
       ComponentInstance *clone() const;
+      ComponentInstance *cloneAlways() const;
     protected:
       bool _loaded;
     };
@@ -27,12 +48,14 @@ namespace YACS
     public:
       ComponentInstanceTest2(const ComponentInstanceTest2& other);
       ComponentInstanceTest2(const std::string& name);
-      void load();
-      void unload();
-      bool isLoaded();
+      void load(Task *askingNode);
+      void unload(Task *askingNode);
+      bool isLoaded(Task *askingNode) const;
       std::string getKind() const;
+      std::string getKindForNode() const;
       ServiceNode* createNode(const std::string& name);
       ComponentInstance *clone() const;
+      ComponentInstance *cloneAlways() const;
     protected:
       bool _loaded;
     };