Salome HOME
ENV: Windows porting.
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
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
37     Handle(GEOM_Function) myFunction;
38
39   public:
40     Standard_EXPORT TPythonDump (Handle(GEOM_Function)& theFunction);
41     Standard_EXPORT virtual ~TPythonDump();
42
43 //    operator TCollection_AsciiString () const;
44
45     Standard_EXPORT TPythonDump& operator<< (long int theArg);
46     Standard_EXPORT TPythonDump& operator<< (int theArg);
47     Standard_EXPORT TPythonDump& operator<< (double theArg);
48     Standard_EXPORT TPythonDump& operator<< (float theArg);
49     Standard_EXPORT TPythonDump& operator<< (const void* theArg);
50     Standard_EXPORT TPythonDump& operator<< (const char* theArg);
51     Standard_EXPORT TPythonDump& operator<< (const Handle(GEOM_Object)& theObject);
52   };
53 }
54
55 #endif