]> SALOME platform Git repositories - modules/kernel.git/blob - src/SALOMEDS/SALOMEDS_AttributeOpened_i.hxx
Salome HOME
Preparation of 3.1.0a2 - compilation error on Fedora3 platform
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeOpened_i.hxx
1 //  File   : SALOMEDS_AttributeOpened_i.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4 //  $Header:
5
6 #ifndef SALOMEDS_AttributeOpened_i_HeaderFile
7 #define SALOMEDS_AttributeOpened_i_HeaderFile
8
9 // IDL headers
10 #include <SALOMEconfig.h>
11 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
12
13 #include "SALOMEDS_GenericAttribute_i.hxx"
14 #include "SALOMEDSImpl_AttributeOpened.hxx"
15
16 class SALOMEDS_AttributeOpened_i: public virtual POA_SALOMEDS::AttributeOpened,
17                                   public virtual SALOMEDS_GenericAttribute_i 
18 {
19 public:
20   
21   SALOMEDS_AttributeOpened_i(const Handle(SALOMEDSImpl_AttributeOpened)& theAttr, CORBA::ORB_ptr orb) 
22     :SALOMEDS_GenericAttribute_i(theAttr, orb) {};
23   ~SALOMEDS_AttributeOpened_i() {};
24
25   CORBA::Boolean IsOpened();
26   void SetOpened(CORBA::Boolean value);
27 };
28
29
30
31 #endif