Salome HOME
c9d31d12c13881e66c5e1dd9a3c6e9323391e404
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributePythonObject.hxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SALOMEDSImpl_AttributePythonObject.hxx
23 //  Author : Michael Ponikarov
24 //  Module : SALOME
25 //
26 #ifndef _SALOMEDSImpl_AttributePythonObject_HeaderFile
27 #define _SALOMEDSImpl_AttributePythonObject_HeaderFile
28
29 #include "SALOMEDSImpl_Defines.hxx"
30 #include "DF_Attribute.hxx"
31 #include "DF_Label.hxx"    
32 #include <string>
33 #include "SALOMEDSImpl_GenericAttribute.hxx"
34
35 #ifdef GetObject
36 #undef GetObject
37 #endif
38
39 class SALOMEDSIMPL_EXPORT SALOMEDSImpl_AttributePythonObject : 
40   public SALOMEDSImpl_GenericAttribute 
41 {
42
43 public:
44   virtual std::string Save();
45   virtual void Load(const std::string&); 
46
47   static const std::string& GetID() ;
48   static SALOMEDSImpl_AttributePythonObject* Set(const DF_Label& label) ;
49   SALOMEDSImpl_AttributePythonObject();
50   void SetObject(const std::string& theSequence, const bool theScript) ;
51   std::string GetObject() const;
52   bool IsScript() const;
53   int GetLength() const;
54   const std::string& ID() const;
55   void Restore(DF_Attribute* with) ;
56   DF_Attribute* NewEmpty() const;
57   void Paste(DF_Attribute* into);
58   ~SALOMEDSImpl_AttributePythonObject() {}
59
60 private:
61
62   std::string mySequence;
63   bool   myIsScript;
64
65 };
66
67 #endif