Salome HOME
ENV: Windows porting.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributePixMap.hxx
1 //  File   : SALOMEDS_AttributePixMap.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributePixMap_HeaderFile
6 #define SALOMEDS_AttributePixMap_HeaderFile
7
8 #include "SALOMEDSClient_AttributePixMap.hxx"
9 #include "SALOMEDS_GenericAttribute.hxx"
10 #include "SALOMEDSImpl_AttributePixMap.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_AttributePixMap: public SALOMEDS_GenericAttribute, public SALOMEDSClient_AttributePixMap
18 {
19 public:  
20   SALOMEDS_AttributePixMap(const Handle(SALOMEDSImpl_AttributePixMap)& theAttr);
21   SALOMEDS_AttributePixMap(SALOMEDS::AttributePixMap_ptr theAttr);
22   ~SALOMEDS_AttributePixMap();
23
24   virtual bool HasPixMap();
25   virtual std::string GetPixMap();
26   virtual void SetPixMap(const std::string& value); 
27
28 };
29
30 #endif