Salome HOME
fa7c0e8ab1da8846d1282955796e73303cb2bade
[modules/geom.git] / src / GEOM / GEOM_PythonDump.hxx
1 // Copyright (C) 2007-2023  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 #include <list>
34
35 namespace GEOM
36 {
37   class TPythonDump
38   {
39     std::ostringstream myStream;
40     static size_t      myCounter;
41     bool               myAppend;
42
43     Handle(GEOM_Function) myFunction;
44
45   public:
46     Standard_EXPORT TPythonDump (const Handle(GEOM_Function)& theFunction, bool theAppend=false);
47     Standard_EXPORT virtual ~TPythonDump();
48
49     //operator TCollection_AsciiString () const;
50
51     template <class T>
52     Standard_EXPORT TPythonDump& operator<< (const Handle(T)& theObject) { return *this << theObject.get(); }
53     Standard_EXPORT TPythonDump& operator<< (bool theArg);
54     Standard_EXPORT TPythonDump& operator<< (long int theArg);
55     Standard_EXPORT TPythonDump& operator<< (int theArg);
56     Standard_EXPORT TPythonDump& operator<< (double theArg);
57     Standard_EXPORT TPythonDump& operator<< (float theArg);
58     Standard_EXPORT TPythonDump& operator<< (const void* theArg);
59     Standard_EXPORT TPythonDump& operator<< (const char* theArg);
60     Standard_EXPORT TPythonDump& operator<< (const TCollection_AsciiString theArg);
61     Standard_EXPORT TPythonDump& operator<< (const TopAbs_ShapeEnum theArg);
62     Standard_EXPORT TPythonDump& operator<< (const Handle(::GEOM_BaseObject)& theObject);
63     Standard_EXPORT TPythonDump& operator<< (const Handle(TColStd_HSequenceOfTransient)& objects);
64     Standard_EXPORT TPythonDump& operator<< (const std::list<Handle(::GEOM_Object)>& theObjects);
65     Standard_EXPORT TPythonDump& operator<< (const GEOM_BaseObject* theObject);
66   };
67
68   /*! Returns an object from two given, which has the latest entry
69    */
70   Standard_EXPORT Handle(::GEOM_BaseObject) GetCreatedLast (const Handle(Standard_Transient)& theObj1,
71                                                             const Handle(Standard_Transient)& theObj2);
72
73   /*! Returns an object from \a theObjects, which has the latest entry
74    */
75   Standard_EXPORT Handle(::GEOM_BaseObject) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects);
76 }
77
78 #endif