Salome HOME
869202e0e02fdbb06fcd9a5d68384a6e12a544f4
[modules/yacs.git] / src / runtime / CORBAComponent.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 _CORBACOMPONENT_HXX_
21 #define _CORBACOMPONENT_HXX_
22
23 #include "ComponentInstance.hxx"
24 #include <omniORB4/CORBA.h>
25
26 namespace YACS
27 {
28   namespace ENGINE
29   {
30     class ServiceNode;
31
32 /*! \brief Class for CORBA component instance
33  *
34  *
35  */
36     class CORBAComponent : public ComponentInstance
37     {
38     public:
39       CORBAComponent(const std::string& name);
40       CORBAComponent(const CORBAComponent& other);
41       virtual ~CORBAComponent();
42       virtual void load();
43       virtual void unload();
44       virtual bool isLoaded();
45       virtual ServiceNode* createNode(const std::string& name);
46       virtual ComponentInstance* clone() const;
47       virtual std::string getFileRepr() const;
48       virtual CORBA::Object_ptr getCompoPtr();
49     public:
50       static const char KIND[];
51       virtual std::string getKind() const;
52     protected:
53       CORBA::Object_var _objComponent;
54     };
55   }
56 }
57
58 #endif