Salome HOME
ENV: Windows porting.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeOpened.hxx
1 //  File   : SALOMEDS_AttributeOpened.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributeOpened_HeaderFile
6 #define SALOMEDS_AttributeOpened_HeaderFile
7
8 #include "SALOMEDSClient_AttributeOpened.hxx"
9 #include "SALOMEDS_GenericAttribute.hxx"
10 #include "SALOMEDSImpl_AttributeOpened.hxx"
11
12 // IDL headers
13 #include <SALOMEconfig.h>
14 #include CORBA_SERVER_HEADER(SALOMEDS)
15 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
16
17 class SALOMEDS_AttributeOpened: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributeOpened
18 {
19 public:  
20   SALOMEDS_AttributeOpened(const Handle(SALOMEDSImpl_AttributeOpened)& theAttr);
21   SALOMEDS_AttributeOpened(SALOMEDS::AttributeOpened_ptr theAttr);
22   ~SALOMEDS_AttributeOpened();
23
24   virtual bool IsOpened();
25   virtual void SetOpened(bool value);
26 };
27
28 #endif