Salome HOME
dim and axiluary field added for hypothesis description
[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
46     TPythonDump& 
47     operator<<(int theArg);
48
49     TPythonDump& 
50     operator<<(double theArg);
51
52     TPythonDump& 
53     operator<<(float theArg);
54
55     TPythonDump& 
56     operator<<(const void* theArg);
57
58     TPythonDump& 
59     operator<<(const char* theArg);
60
61     TPythonDump& 
62     operator<<(const SMESH::ElementType& theArg);
63
64     TPythonDump& 
65     operator<<(const SMESH::long_array& theArg);
66
67     TPythonDump& 
68     operator<<(CORBA::Object_ptr theArg);
69
70     TPythonDump& 
71     operator<<(SMESH::FilterLibrary_i* theArg);
72
73     TPythonDump& 
74     operator<<(SMESH::FilterManager_i* theArg);
75
76     TPythonDump& 
77     operator<<(SMESH::Filter_i* theArg);
78
79     TPythonDump& 
80     operator<<(SMESH::Functor_i* theArg);
81   };
82 }
83
84
85 #endif