Salome HOME
fb82ce7408b5c623a96336602674b20e91353720
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributePythonObject_i.hxx
1 //  File   : SALOMEDS_AttributePythonObject_i.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDS_AttributePythonObject_i_HeaderFile
6 #define SALOMEDS_AttributePythonObject_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_AttributePythonObject.hxx"
14
15 class SALOMEDS_AttributePythonObject_i: public virtual POA_SALOMEDS::AttributePythonObject,
16                                         public virtual SALOMEDS_GenericAttribute_i {
17 public:
18   
19   SALOMEDS_AttributePythonObject_i(const Handle(SALOMEDSImpl_AttributePythonObject)& theAttr, CORBA::ORB_ptr orb) 
20     :SALOMEDS_GenericAttribute_i(theAttr, orb) {}; 
21
22   ~SALOMEDS_AttributePythonObject_i() {};
23
24   virtual void SetObject(const char* theSequence, CORBA::Boolean IsScript);
25   virtual char* GetObject();
26   virtual CORBA::Boolean IsScript();
27
28 };
29
30
31
32
33 #endif