X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fengine%2FTest%2FComponentInstanceTest.hxx;h=ba513e9915b8ea986c5dff670e9f7571a874af3e;hb=e41dd6512d61d8270dec5ad62f4a0b6703ff112d;hp=4406b4ae466df2e2f2749d44febc418ae319cb88;hpb=c81be9b5e74b26e207bd6efd0ccf68418ac536a3;p=modules%2Fyacs.git diff --git a/src/engine/Test/ComponentInstanceTest.hxx b/src/engine/Test/ComponentInstanceTest.hxx index 4406b4ae4..ba513e991 100644 --- a/src/engine/Test/ComponentInstanceTest.hxx +++ b/src/engine/Test/ComponentInstanceTest.hxx @@ -1,9 +1,9 @@ -// Copyright (C) 2006-2012 CEA/DEN, EDF R&D +// 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. +// 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 @@ -31,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; }; @@ -46,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; };