Salome HOME
This commit was generated by cvs2git to create tag 'V1_4_0b2'.
[modules/kernel.git] / src / GenericObj / SALOME_GenericObj_i.hh
1 //  SALOME_GenericObj_i_HH
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //  File   : SALOME_GenericObj_i.hh
24 //  Author : Alexey PETROV
25 //  Module : SALOME
26
27 #ifndef SALOME_GenericObj_i_HH
28 #define SALOME_GenericObj_i_HH
29
30 // IDL headers
31 #include "SALOMEconfig.h"
32 #include CORBA_SERVER_HEADER(SALOME_GenericObj)
33
34 namespace SALOME{
35   class GenericObj_i : 
36     public virtual POA_SALOME::GenericObj,
37     public virtual PortableServer::RefCountServantBase
38   {
39   protected:
40     PortableServer::POA_var myPOA;
41     int myRefCounter;
42   public:
43     // In the constructor you can provide default POA for the servant
44     GenericObj_i(PortableServer::POA_ptr thePOA = PortableServer::POA::_nil());
45     // The function is used implicetly in "_this" function
46     virtual PortableServer::POA_ptr _default_POA();
47   public: // Follow functions is IDL defined
48     /*! Increase the reference count (mark as used by another object).*/
49     virtual void Register();
50     /*! Decrease the reference count (release by another object).*/
51     virtual void Destroy();
52   };
53 };
54
55 #endif
56