Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/kernel.git] / src / SALOMEDSClient / SALOMEDSClient_AttributePythonObject.hxx
1 //  File   : SALOMEDSClient_AttributePythonObject.hxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #ifndef SALOMEDSClient_AttributePythonObject_HeaderFile
6 #define SALOMEDSClient_AttributePythonObject_HeaderFile
7
8 #include "SALOMEDSClient_definitions.hxx" 
9 #include "SALOMEDSClient_GenericAttribute.hxx" 
10 #include <string> 
11
12 class SALOMEDSClient_AttributePythonObject: public virtual SALOMEDSClient_GenericAttribute
13 {
14 public:
15
16   virtual void SetObject(const std::string& theSequence, bool IsScript) = 0;
17   virtual std::string GetObject() = 0;
18   virtual bool IsScript() = 0;
19
20 };
21
22
23
24
25 #endif