Salome HOME
Merged from BR_V51_RB (removed Batch and added libBatch as an optional prerequisite).
[modules/kernel.git] / src / GenericObj / SALOME_GenericObj_i.hh
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  SALOME_GenericObj_i_HH
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 #ifdef WIN32
35 # if defined GENERICOBJ_EXPORTS || defined SalomeGenericObj_EXPORTS
36 #  define GENERICOBJ_EXPORT __declspec( dllexport )
37 # else
38 #  define GENERICOBJ_EXPORT __declspec( dllimport )
39 # endif
40 #else
41 # define GENERICOBJ_EXPORT
42 #endif
43
44 namespace SALOME{
45   class GENERICOBJ_EXPORT GenericObj_i : 
46     public virtual POA_SALOME::GenericObj,
47     public virtual PortableServer::ServantBase
48   {
49   protected:
50     PortableServer::POA_var myPOA;
51     int myRefCounter;
52   public:
53     // In the constructor you can provide default POA for the servant
54     GenericObj_i(PortableServer::POA_ptr thePOA = PortableServer::POA::_nil());
55     // The function is used implicetly in "_this" function
56     virtual PortableServer::POA_ptr _default_POA();
57   public: // Follow functions is IDL defined
58     /*! Increase the reference count (mark as used by another object).*/
59     virtual void Register();
60     /*! Decrease the reference count (release by another object).*/
61     virtual void Destroy();
62   };
63 };
64
65 #endif
66