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