Salome HOME
Preparation of 3.1.0a2 - compilation error on Fedora3 platform
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_AttributeName_i.hxx
1 //  File   : SALOMEDS_AttributeName_i.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4 //  $Header:
5
6 #ifndef SALOMEDS_AttributeName_i_HeaderFile
7 #define SALOMEDS_AttributeName_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_AttributeName.hxx"
15
16 class SALOMEDS_AttributeName_i: public virtual POA_SALOMEDS::AttributeName,
17                                 public virtual SALOMEDS_GenericAttribute_i 
18 {
19 public:
20   
21   SALOMEDS_AttributeName_i(const Handle(SALOMEDSImpl_AttributeName)& theAttr, CORBA::ORB_ptr orb) 
22     :SALOMEDS_GenericAttribute_i(theAttr, orb) {}; 
23
24   ~SALOMEDS_AttributeName_i() {};
25
26   char* Value();
27   void SetValue(const char* value);
28
29 };
30
31
32
33
34 #endif