Salome HOME
1st step.
[modules/med.git] / src / MEDCouplingCorba / Test / MEDCouplingMeshFieldFactoryComponent.hxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #ifndef __MEDCOUPLINGCORBAFIELDFACTORYCOMPONENT_HXX__
22 #define __MEDCOUPLINGCORBAFIELDFACTORYCOMPONENT_HXX__
23
24 #include <string>
25
26 namespace MEDCoupling
27 {
28   class MEDCouplingUMesh;
29   class MEDCouplingFieldDouble;
30   class MEDCouplingFieldTemplate;
31   class MEDCouplingExtrudedMesh;
32   class MEDCoupling1DGTUMesh;
33   class MEDCoupling1SGTUMesh;
34   class MEDCouplingCMesh;
35   class MEDCouplingIMesh;
36   class MEDCouplingCurveLinearMesh;
37   class DataArrayDouble;
38   class DataArrayInt;
39   class MEDCouplingMultiFields;
40   class MEDCouplingFieldOverTime;
41 }
42
43 namespace SALOME_TEST
44 {
45   class MEDCouplingCorbaServBasicsTest
46   {
47   public:
48     static MEDCoupling::MEDCouplingUMesh *build1DMesh();
49     static MEDCoupling::MEDCouplingUMesh *build2DMesh();
50     static MEDCoupling::MEDCouplingUMesh *build3DMesh();
51     static MEDCoupling::MEDCouplingUMesh *build3DSurfMesh();
52     static MEDCoupling::MEDCouplingUMesh *build0DMesh();
53     static MEDCoupling::MEDCouplingUMesh *buildM1DMesh();
54     static MEDCoupling::MEDCouplingExtrudedMesh *buildExtrudedMesh(MEDCoupling::MEDCouplingUMesh *&m2D);
55     static MEDCoupling::MEDCouplingCMesh *buildCMesh();
56     static MEDCoupling::MEDCouplingIMesh *buildIMesh();
57     static MEDCoupling::MEDCouplingCurveLinearMesh *buildCLMesh();
58     static MEDCoupling::MEDCoupling1SGTUMesh *build1SGTUMesh();
59     static MEDCoupling::MEDCoupling1DGTUMesh *build1DGTUMesh();
60     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn2DNT();
61     static MEDCoupling::MEDCouplingFieldDouble *buildFieldNodeScalarOn2DNT();
62     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn3DNT();
63     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn3DSurfWT();
64     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn3DSurfCOTI();
65     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn2DLT();
66     static MEDCoupling::MEDCouplingFieldDouble *buildFieldGaussPt2DWT();
67     static MEDCoupling::MEDCouplingFieldDouble *buildFieldGaussPtNE2DWT();
68     static MEDCoupling::MEDCouplingFieldDouble *buildFieldVectorOnExtrudedWT();
69     static MEDCoupling::MEDCouplingFieldDouble *buildFieldVectorOnCMeshWT();
70     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateCellOn2D();
71     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateNodeOn2D();
72     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateGaussPtOn2D();
73     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateGaussNEOn2D();
74     static MEDCoupling::MEDCouplingMultiFields *buildMultiFields1();
75     static MEDCoupling::DataArrayDouble *buildArrayDouble1();
76     static MEDCoupling::DataArrayDouble *buildArrayDouble2();
77     static MEDCoupling::DataArrayDouble *buildArrayDouble3();
78     static MEDCoupling::DataArrayInt *buildArrayInt1();
79     static MEDCoupling::DataArrayInt *buildArrayInt2();
80     static MEDCoupling::DataArrayInt *buildArrayInt3();
81     static MEDCoupling::MEDCouplingFieldOverTime *buildMultiFields2();
82     static std::string buildFileNameForIOR();
83   };
84 }
85
86 #endif