Version: 9.16.0
GEOM_PythonDump.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, 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
35namespace GEOM
36{
38 {
39 std::ostringstream myStream;
40 static size_t myCounter;
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
70 Standard_EXPORT Handle(::GEOM_BaseObject) GetCreatedLast (const Handle(Standard_Transient)& theObj1,
71 const Handle(Standard_Transient)& theObj2);
72
75 Standard_EXPORT Handle(::GEOM_BaseObject) GetCreatedLast (const Handle(TColStd_HSequenceOfTransient)& theObjects);
76}
77
78#endif
Definition: GEOM_PythonDump.hxx:38
bool myAppend
Definition: GEOM_PythonDump.hxx:41
Standard_EXPORT TPythonDump & operator<<(const Handle(T)&theObject)
Definition: GEOM_PythonDump.hxx:52
Handle(GEOM_Function) myFunction
static size_t myCounter
Definition: GEOM_PythonDump.hxx:40
Standard_EXPORT TPythonDump(const Handle(GEOM_Function)&theFunction, bool theAppend=false)
Definition: GEOM_PythonDump.cxx:36
virtual Standard_EXPORT ~TPythonDump()
Definition: GEOM_PythonDump.cxx:43
std::ostringstream myStream
Definition: GEOM_PythonDump.hxx:39
A common root of objects in GEOM module.
Definition: GEOM_Gen.idl:300
Definition: GEOM_PythonDump.cxx:33
Handle(GEOM_BaseObject) GetCreatedLast(const Handle(Standard_Transient) &theObj1
Definition: GEOM_PythonDump.cxx:204