Salome HOME
f996530f0b9e100c3f8c111359733b5ea2b6b95c
[modules/yacs.git] / src / runtime / SalomeComponent.hxx
1 // Copyright (C) 2006-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _SALOMECOMPONENT_HXX_
21 #define _SALOMECOMPONENT_HXX_
22
23 #include "YACSRuntimeSALOMEExport.hxx"
24 #include "ComponentInstance.hxx"
25 #include <omniORB4/CORBA.h>
26
27 namespace YACS
28 {
29   namespace ENGINE
30   {
31 /*! \brief Class for Salome component instance
32  *
33  *
34  */
35     class YACSRUNTIMESALOME_EXPORT SalomeComponent : public ComponentInstance
36     {
37     public:
38       SalomeComponent(const std::string& name);
39       SalomeComponent(const SalomeComponent& other);
40       virtual ~SalomeComponent();
41       virtual void load(Task *askingNode);
42       virtual void unload(Task *askingNode);
43       virtual bool isLoaded(Task *askingNode) const;
44       virtual bool setContainer(Container *cont);
45       virtual ServiceNode* createNode(const std::string& name);
46       virtual ComponentInstance* clone() const;
47       virtual ComponentInstance* cloneAlways() const;
48       virtual std::string getFileRepr() const;
49       virtual CORBA::Object_ptr getCompoPtr(){return CORBA::Object::_duplicate(_objComponent);}
50       virtual void shutdown(int level);
51     public:
52       static const char KIND[];
53       virtual std::string getKind() const;
54       virtual std::string getKindForNode() const;
55     protected:
56       CORBA::Object_var _objComponent;
57     };
58   }
59 }
60
61 #endif