]> SALOME platform Git repositories - modules/kernel.git/blob - src/SALOMEDS/SALOMEDS_AttributeUserID_i.hxx
Salome HOME
Preparation of 3.1.0a2 - compilation error on Fedora3 platform
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeUserID_i.hxx
1 //  File   : SALOMEDS_AttributeUserID_i.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributeUserID_i_HeaderFile
6 #define SALOMEDS_AttributeUserID_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_AttributeUserID.hxx"
14
15 class SALOMEDS_AttributeUserID_i: public virtual POA_SALOMEDS::AttributeUserID,
16                                   public virtual SALOMEDS_GenericAttribute_i {
17 public:
18   
19   SALOMEDS_AttributeUserID_i(const Handle(SALOMEDSImpl_AttributeUserID)& theAttr, CORBA::ORB_ptr orb) 
20     :SALOMEDS_GenericAttribute_i(theAttr, orb) {}; 
21
22   ~SALOMEDS_AttributeUserID_i() {};
23
24   char* Value();
25   void SetValue(const char* value);
26
27   static const Standard_GUID& DefaultID() {
28     return SALOMEDSImpl_AttributeUserID::DefaultID();
29   }
30
31 };
32
33
34
35
36 #endif