]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESH_I/SMESH_PythonDump.hxx
Salome HOME
07eea60f771c69c12649a44304fc3b6704f519e5
[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 <TCollection_AsciiString.hxx>
27
28 namespace SMESH
29 {
30   TCollection_AsciiString& 
31   operator<<(TCollection_AsciiString& theString, 
32              const char* theArg);
33
34   TCollection_AsciiString& 
35   operator<<(TCollection_AsciiString& theString, 
36              int theArg);
37
38   TCollection_AsciiString& 
39   operator<<(TCollection_AsciiString& theString, 
40              float theArg);
41
42   class FilterLibrary_i;
43   TCollection_AsciiString& 
44   operator<<(TCollection_AsciiString& theString, 
45              SMESH::FilterLibrary_i* theArg);
46
47   class FilterManager_i;
48   TCollection_AsciiString& 
49   operator<<(TCollection_AsciiString& theString, 
50              SMESH::FilterManager_i* theArg);
51
52   class Filter_i;
53   TCollection_AsciiString& 
54   operator<<(TCollection_AsciiString& theString, 
55              SMESH::Filter_i* theArg);
56
57   class Functor_i;
58   TCollection_AsciiString& 
59   operator<<(TCollection_AsciiString& theString, 
60              SMESH::Functor_i* theArg);
61
62   TCollection_AsciiString& 
63   operator<<(TCollection_AsciiString& theString, 
64              CORBA::Object_ptr theArg);
65
66   TCollection_AsciiString& 
67   operator<<(TCollection_AsciiString& theString, 
68              const SMESH::long_array& theArg);
69
70   class TPythonDump
71   {
72     TCollection_AsciiString myString;
73   public:
74     virtual ~TPythonDump();
75     
76     template<class T>
77     TCollection_AsciiString& 
78     operator<<(T theArg){
79       return myString<<theArg;
80     }
81   };
82 }
83
84
85 #endif