Salome HOME
Updated copyright comment
[modules/med.git] / src / MEDCouplingCorba / Test / MEDCouplingMeshFieldFactoryComponent.hxx
1 // Copyright (C) 2007-2024  CEA, EDF
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 "MCType.hxx"
25
26 #include <string>
27
28 namespace MEDCoupling
29 {
30   class MEDCouplingUMesh;
31   class MEDCouplingFieldDouble;
32   class MEDCouplingFieldTemplate;
33   class MEDCouplingMappedExtrudedMesh;
34   class MEDCoupling1DGTUMesh;
35   class MEDCoupling1SGTUMesh;
36   class MEDCouplingCMesh;
37   class MEDCouplingIMesh;
38   class MEDCouplingCurveLinearMesh;
39   class DataArrayDouble;
40   class DataArrayInt;
41   class MEDCouplingMultiFields;
42   class MEDCouplingFieldOverTime;
43 }
44
45 namespace SALOME_TEST
46 {
47   class MEDCouplingCorbaServBasicsTest
48   {
49   public:
50     static MEDCoupling::MEDCouplingUMesh *build1DMesh();
51     static MEDCoupling::MEDCouplingUMesh *build2DMesh();
52     static MEDCoupling::MEDCouplingUMesh *build3DMesh();
53     static MEDCoupling::MEDCouplingUMesh *build3DSurfMesh();
54     static MEDCoupling::MEDCouplingUMesh *build0DMesh();
55     static MEDCoupling::MEDCouplingUMesh *buildM1DMesh();
56     static MEDCoupling::MEDCouplingMappedExtrudedMesh *buildExtrudedMesh(MEDCoupling::MEDCouplingUMesh *&m2D);
57     static MEDCoupling::MEDCouplingCMesh *buildCMesh();
58     static MEDCoupling::MEDCouplingIMesh *buildIMesh();
59     static MEDCoupling::MEDCouplingCurveLinearMesh *buildCLMesh();
60     static MEDCoupling::MEDCoupling1SGTUMesh *build1SGTUMesh();
61     static MEDCoupling::MEDCoupling1DGTUMesh *build1DGTUMesh();
62     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn2DNT();
63     static MEDCoupling::MEDCouplingFieldDouble *buildFieldNodeScalarOn2DNT();
64     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn3DNT();
65     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn3DSurfWT();
66     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn3DSurfCOTI();
67     static MEDCoupling::MEDCouplingFieldDouble *buildFieldScalarOn2DLT();
68     static MEDCoupling::MEDCouplingFieldDouble *buildFieldGaussPt2DWT();
69     static MEDCoupling::MEDCouplingFieldDouble *buildFieldGaussPtNE2DWT();
70     static MEDCoupling::MEDCouplingFieldDouble *buildFieldVectorOnExtrudedWT();
71     static MEDCoupling::MEDCouplingFieldDouble *buildFieldVectorOnCMeshWT();
72     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateCellOn2D();
73     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateNodeOn2D();
74     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateGaussPtOn2D();
75     static MEDCoupling::MEDCouplingFieldTemplate *buildFieldTemplateGaussNEOn2D();
76     static MEDCoupling::MEDCouplingMultiFields *buildMultiFields1();
77     static MEDCoupling::DataArrayDouble *buildArrayDouble1();
78     static MEDCoupling::DataArrayDouble *buildArrayDouble2();
79     static MEDCoupling::DataArrayDouble *buildArrayDouble3();
80     static MEDCoupling::DataArrayInt *buildArrayInt1();
81     static MEDCoupling::DataArrayInt *buildArrayInt2();
82     static MEDCoupling::DataArrayInt *buildArrayInt3();
83     static MEDCoupling::MEDCouplingFieldOverTime *buildMultiFields2();
84     static std::string buildFileNameForIOR();
85   };
86 }
87
88 #endif