Salome HOME
ENV: Windows porting.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeTextColor_i.hxx
1 //  File   : SALOMEDS_AttributeTextColor_i.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4 //  $Header$
5
6 #ifndef SALOMEDS_AttributeTextColor_i_HeaderFile
7 #define SALOMEDS_AttributeTextColor_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_AttributeTextColor.hxx"
15
16 class SALOMEDS_AttributeTextColor_i: public virtual POA_SALOMEDS::AttributeTextColor,
17                                      public virtual SALOMEDS_GenericAttribute_i 
18 {
19 public:
20   
21   SALOMEDS_AttributeTextColor_i(const Handle(SALOMEDSImpl_AttributeTextColor)& theAttr, CORBA::ORB_ptr orb) 
22     :SALOMEDS_GenericAttribute_i(theAttr, orb) {}; 
23
24   ~SALOMEDS_AttributeTextColor_i() {};
25
26   SALOMEDS::Color TextColor();
27   void SetTextColor(const SALOMEDS::Color& value);
28
29 };
30
31
32 #endif