Salome HOME
Dump Python: set correct names to objects in study; provide correct setting of a...
[modules/smesh.git] / src / SMESH_I / SMESH_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 _SMESH_PYTHONDUMP_HXX_
21 #define _SMESH_PYTHONDUMP_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(SMESH_Mesh)
25
26 #include <sstream>
27
28 namespace SMESH
29 {
30   class FilterLibrary_i;
31   class FilterManager_i;
32   class Filter_i;
33   class Functor_i;
34
35   class TPythonDump
36   {
37     std::ostringstream myStream;
38     static size_t myCounter;
39   public:
40     TPythonDump();
41     virtual ~TPythonDump();
42     
43     TPythonDump& 
44     operator<<(long int theArg){
45       myStream<<theArg;
46       return *this;
47     }
48
49     TPythonDump& 
50     operator<<(int theArg){
51       myStream<<theArg;
52       return *this;
53     }
54
55     TPythonDump& 
56     operator<<(double theArg){
57       myStream<<theArg;
58       return *this;
59     }
60
61     TPythonDump& 
62     operator<<(float theArg){
63       myStream<<theArg;
64       return *this;
65     }
66
67     TPythonDump& 
68     operator<<(const void* theArg){
69       myStream<<theArg;
70       return *this;
71     }
72
73     TPythonDump& 
74     operator<<(const char* theArg){
75       myStream<<theArg;
76       return *this;
77     }
78
79     TPythonDump& 
80     operator<<(const SMESH::ElementType& theArg);
81
82     TPythonDump& 
83     operator<<(const SMESH::long_array& theArg);
84
85     TPythonDump& 
86     operator<<(CORBA::Object_ptr theArg);
87
88     TPythonDump& 
89     operator<<(SMESH::FilterLibrary_i* theArg);
90
91     TPythonDump& 
92     operator<<(SMESH::FilterManager_i* theArg);
93
94     TPythonDump& 
95     operator<<(SMESH::Filter_i* theArg);
96
97     TPythonDump& 
98     operator<<(SMESH::Functor_i* theArg);
99   };
100 }
101
102
103 #endif