Version: 8.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
GEOM_PythonDump.hxx
Go to the documentation of this file.
1 // Copyright (C) 2007-2016 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 {
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 #if OCC_VERSION_MAJOR >= 7
52  template <class T>
53  Standard_EXPORT TPythonDump& operator<< (const Handle(T)& theObject) { return *this << theObject.get(); }
54 #endif
55  Standard_EXPORT TPythonDump& operator<< (bool theArg);
56  Standard_EXPORT TPythonDump& operator<< (long int theArg);
57  Standard_EXPORT TPythonDump& operator<< (int theArg);
58  Standard_EXPORT TPythonDump& operator<< (double theArg);
59  Standard_EXPORT TPythonDump& operator<< (float theArg);
60  Standard_EXPORT TPythonDump& operator<< (const void* theArg);
61  Standard_EXPORT TPythonDump& operator<< (const char* theArg);
62  Standard_EXPORT TPythonDump& operator<< (const TCollection_AsciiString theArg);
63  Standard_EXPORT TPythonDump& operator<< (const TopAbs_ShapeEnum theArg);
64  Standard_EXPORT TPythonDump& operator<< (const Handle(GEOM_BaseObject)& theObject);
65  Standard_EXPORT TPythonDump& operator<< (const Handle(TColStd_HSequenceOfTransient)& objects);
66  Standard_EXPORT TPythonDump& operator<< (const std::list<Handle(GEOM_Object)>& theObjects);
67  Standard_EXPORT TPythonDump& operator<< (const GEOM_BaseObject* theObject);
68  };
69 
72  Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(GEOM_Object)& theObj1,
73  const Handle(GEOM_Object)& theObj2);
74 
77  Standard_EXPORT Handle(GEOM_Object) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects);
78 }
79 
80 #endif