Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/visu.git] / src / CONVERTOR / VISU_ConvertorDef.hxx
1 //  VISU CONVERTOR :
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //  File   : 
24 //  Author : 
25 //  Module : 
26
27 #ifndef VISU_ConvertorDef_HeaderFile
28 #define VISU_ConvertorDef_HeaderFile
29
30 /*! 
31   \file VISU_ConvertorDef.hxx
32   \brief The file contains predeclarations for basic classes of the VISU CONVERTER package
33 */
34
35 #include "MED_SharedPtr.hxx"
36
37 namespace VISU
38 {
39   using MED::SharedPtr;
40
41   //---------------------------------------------------------------
42   enum  TEntity {NODE_ENTITY, EDGE_ENTITY, FACE_ENTITY, CELL_ENTITY};
43
44   struct TMesh;
45   typedef SharedPtr<TMesh> PMesh;
46
47   struct TGaussSubMesh;
48   typedef SharedPtr<TGaussSubMesh> PGaussSubMesh;
49
50   struct TGaussMesh;
51   typedef SharedPtr<TGaussMesh> PGaussMesh;
52
53   struct TSubProfile;
54   typedef SharedPtr<TSubProfile> PSubProfile;
55
56   struct TProfile;
57   typedef SharedPtr<TProfile> PProfile;
58
59   struct TMeshOnEntity;
60   typedef SharedPtr<TMeshOnEntity> PMeshOnEntity;
61
62   struct TFamily;
63   typedef SharedPtr<TFamily> PFamily;
64
65   struct TGroup;
66   typedef SharedPtr<TGroup> PGroup;
67
68   struct TField;
69   typedef SharedPtr<TField> PField;
70
71   struct TGauss;
72   typedef SharedPtr<TGauss> PGauss;
73
74   struct TValForTime;
75   typedef SharedPtr<TValForTime> PValForTime;
76   
77   struct TGrille;
78   typedef SharedPtr<TGrille> PGrille;
79 }
80
81 #endif