Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/geom.git] / src / GEOM / GEOM_PythonDump.hxx
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19
20 #ifndef _GEOM_PYTHONDUMP_HXX_
21 #define _GEOM_PYTHONDUMP_HXX_
22
23 #include <SALOMEconfig.h>
24
25 #include "GEOM_Object.hxx"
26 #include "GEOM_Function.hxx"
27
28 #include <TCollection_AsciiString.hxx>
29
30 namespace GEOM
31 {
32   class TPythonDump
33   {
34     std::ostringstream myStream;
35     static size_t      myCounter;
36     bool               myAppend;
37
38     Handle(GEOM_Function) myFunction;
39
40   public:
41     Standard_EXPORT TPythonDump (Handle(GEOM_Function)& theFunction, bool theAppend=false);
42     Standard_EXPORT virtual ~TPythonDump();
43
44 //    operator TCollection_AsciiString () const;
45
46     Standard_EXPORT TPythonDump& operator<< (long int theArg);
47     Standard_EXPORT TPythonDump& operator<< (int theArg);
48     Standard_EXPORT TPythonDump& operator<< (double theArg);
49     Standard_EXPORT TPythonDump& operator<< (float theArg);
50     Standard_EXPORT TPythonDump& operator<< (const void* theArg);
51     Standard_EXPORT TPythonDump& operator<< (const char* theArg);
52     Standard_EXPORT TPythonDump& operator<< (const TopAbs_ShapeEnum theArg);
53     Standard_EXPORT TPythonDump& operator<< (const Handle(GEOM_Object)& theObject);
54   };
55
56   /*! Returns an object from two given, which has the latest entry
57    */
58   Handle(GEOM_Object) GetCreatedLast (const Handle(GEOM_Object)& theObj1,
59                                       const Handle(GEOM_Object)& theObj2);
60
61   /*! Returns an object from \a theObjects, which has the latest entry
62    */
63   Handle(GEOM_Object) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects);
64 }
65
66 #endif