Salome HOME
ENV: Windows porting.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeComment_i.hxx
1 //  File   : SALOMEDS_AttributeComment_i.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributeComment_i_HeaderFile
6 #define SALOMEDS_AttributeComment_i_HeaderFile
7
8 // IDL headers
9 #include <SALOMEconfig.h>
10 #include CORBA_SERVER_HEADER(SALOMEDS_Attributes)
11
12 #include "SALOMEDS_GenericAttribute_i.hxx"
13 #include "SALOMEDSImpl_AttributeComment.hxx"
14
15 class SALOMEDS_AttributeComment_i: public virtual POA_SALOMEDS::AttributeComment,
16                                    public virtual SALOMEDS_GenericAttribute_i 
17 {
18 public:  
19   SALOMEDS_AttributeComment_i(const Handle(SALOMEDSImpl_AttributeComment)& theAttr, CORBA::ORB_ptr orb) 
20     :SALOMEDS_GenericAttribute_i(theAttr, orb) {};
21
22   virtual ~SALOMEDS_AttributeComment_i() {};
23
24   char* Value();
25   void SetValue(const char* value);
26 };
27
28 #endif