Salome HOME
NRI : Temporary modification for reading catalog of modules.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributePixMap_i.hxx
1 // File:        SALOMEDS_AttributePixMap_i.hxx
2 // Created:     Fri Jul  5 10:21:15 2002
3 // Author:      Yves FRICAUD
4
5 //  Project   : SALOME
6 //  Module    : SALOMEDS
7 //  Copyright : Open CASCADE 2002
8 //  $Header: 
9
10
11 #ifndef SALOMEDS_AttributePixMap_i_HeaderFile
12 #define SALOMEDS_AttributePixMap_i_HeaderFile
13
14 // IDL headers
15 #include "SALOMEDS_PixMapAttribute.hxx"
16 #include <SALOMEconfig.h>
17 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
18 #include "SALOMEDS_GenericAttribute_i.hxx"
19
20 class SALOMEDS_AttributePixMap_i: public virtual POA_SALOMEDS::AttributePixMap,
21                                 public virtual SALOMEDS_GenericAttribute_i {
22 public:
23   
24   SALOMEDS_AttributePixMap_i(const Handle(SALOMEDS_PixMapAttribute)& thePixMapAttr, CORBA::ORB_ptr orb) 
25   {
26     _myOrb = CORBA::ORB::_duplicate(orb);
27     _myAttr = thePixMapAttr;
28   };
29   ~SALOMEDS_AttributePixMap_i() {};
30   CORBA::Boolean HasPixMap();
31   char* GetPixMap();
32   void SetPixMap(const char* value);
33 };
34
35
36 #endif