Salome HOME
Merge from V7_3_BR branch 18/12/2013
[modules/yacs.git] / src / engine / ServiceNode.hxx
index d8b687d2cd38ad02e0e836483974e7b6f39a5884..63a4c1932854545d9bf5d8be3c4509f2afc8b3fc 100644 (file)
@@ -1,7 +1,28 @@
+// Copyright (C) 2006-2013  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
+//
+
 #ifndef __SERVICENODE_HXX__
 #define __SERVICENODE_HXX__
 
+#include "YACSlibEngineExport.hxx"
 #include "ElementaryNode.hxx"
+
 #include <string>
 
 namespace YACS
@@ -10,14 +31,7 @@ namespace YACS
   {
     class ComponentInstance;
 
-/*! \brief Class for calculation node associated with a component service
- *
- * \ingroup Nodes
- *
- * \see InlineNode
- * \see ElementaryNode
- */
-    class ServiceNode: public ElementaryNode 
+    class YACSLIBENGINE_EXPORT ServiceNode: public ElementaryNode 
     {
     protected:
       ServiceNode(const std::string& name);
@@ -28,6 +42,7 @@ namespace YACS
       virtual bool isDeployable() const;
       virtual void setComponent(ComponentInstance* compo) throw(Exception);
       virtual ComponentInstance *getComponent();
+      virtual Container *getContainer();
       virtual void setRef(const std::string& ref);
       virtual std::string getRef();
       virtual void setMethod(const std::string& method){ _method=method; }
@@ -35,15 +50,9 @@ namespace YACS
       virtual ServiceNode *createNode(const std::string& name) = 0;
       virtual ~ServiceNode();
       virtual void accept(Visitor *visitor);
-
-//! Return the service node kind
-/*!
- * A runtime can provide several implementations of a service node.
- * Each implementation has a different kind. A ComponentInstance can be
- * associated to a ServiceNode with the same kind.
- */
       virtual std::string getKind() const;
       static const char KIND[];
+      virtual std::string typeName() {return "YACS__ENGINE__ServiceNode";}
     protected:
       ComponentInstance* _component;
       std::string _method;