Salome HOME
43c63133e5c7995c7eb0ae583332c31264a86287
[modules/geom.git] / src / GEOM / GEOM_PythonDump.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 #ifndef _GEOM_PYTHONDUMP_HXX_
23 #define _GEOM_PYTHONDUMP_HXX_
24
25 #include <SALOMEconfig.h>
26
27 #include "GEOM_Object.hxx"
28 #include "GEOM_Function.hxx"
29
30 #include <TCollection_AsciiString.hxx>
31
32 namespace GEOM
33 {
34   class TPythonDump
35   {
36     std::ostringstream myStream;
37     static size_t      myCounter;
38     bool               myAppend;
39
40     Handle(GEOM_Function) myFunction;
41
42   public:
43     Standard_EXPORT TPythonDump (Handle(GEOM_Function)& theFunction, bool theAppend=false);
44     Standard_EXPORT virtual ~TPythonDump();
45
46 //    operator TCollection_AsciiString () const;
47
48     Standard_EXPORT TPythonDump& operator<< (long int theArg);
49     Standard_EXPORT TPythonDump& operator<< (int theArg);
50     Standard_EXPORT TPythonDump& operator<< (double theArg);
51     Standard_EXPORT TPythonDump& operator<< (float theArg);
52     Standard_EXPORT TPythonDump& operator<< (const void* theArg);
53     Standard_EXPORT TPythonDump& operator<< (const char* theArg);
54     Standard_EXPORT TPythonDump& operator<< (const TopAbs_ShapeEnum theArg);
55     Standard_EXPORT TPythonDump& operator<< (const Handle(GEOM_Object)& theObject);
56   };
57
58   /*! Returns an object from two given, which has the latest entry
59    */
60   Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(GEOM_Object)& theObj1,
61                                       const Handle(GEOM_Object)& theObj2);
62
63   /*! Returns an object from \a theObjects, which has the latest entry
64    */
65   Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects);
66 }
67
68 #endif