Salome HOME
ENV: Windows porting.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeGraphic.hxx
1 //  File   : SALOMEDS_AttributeGraphic.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributeGraphic_HeaderFile
6 #define SALOMEDS_AttributeGraphic_HeaderFile
7
8 #include "SALOMEDSClient_AttributeGraphic.hxx"
9 #include "SALOMEDS_GenericAttribute.hxx"
10 #include "SALOMEDSImpl_AttributeGraphic.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_AttributeGraphic: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributeGraphic
18 {
19 public:  
20   SALOMEDS_AttributeGraphic(const Handle(SALOMEDSImpl_AttributeGraphic)& theAttr);
21   SALOMEDS_AttributeGraphic(SALOMEDS::AttributeGraphic_ptr theAttr);
22   ~SALOMEDS_AttributeGraphic();
23
24   virtual void  SetVisibility(int theViewId, bool theValue);
25   virtual bool GetVisibility(int theViewId);
26 };
27
28 #endif