Salome HOME
Revert "Synchronize adm files"
[modules/yacs.git] / src / runtime / SalomeComponent.hxx
1 // Copyright (C) 2006-2014  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     class ServiceNode;
32
33 /*! \brief Class for Salome component instance
34  *
35  *
36  */
37     class YACSRUNTIMESALOME_EXPORT SalomeComponent : public ComponentInstance
38     {
39     public:
40       SalomeComponent(const std::string& name);
41       SalomeComponent(const SalomeComponent& other);
42       virtual ~SalomeComponent();
43       virtual void load();
44       virtual void unload();
45       virtual bool isLoaded();
46       virtual void setContainer(Container *cont);
47       virtual ServiceNode* createNode(const std::string& name);
48       virtual ComponentInstance* clone() const;
49       virtual std::string getFileRepr() const;
50       virtual CORBA::Object_ptr getCompoPtr(){return CORBA::Object::_duplicate(_objComponent);}
51       virtual void shutdown(int level);
52     public:
53       static const char KIND[];
54       virtual std::string getKind() const;
55     protected:
56       CORBA::Object_var _objComponent;
57     };
58   }
59 }
60
61 #endif