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