Salome HOME
Merge branch 'master' of https://codev-tuleap.cea.fr/plugins/git/salome/medcoupling
[tools/medcoupling.git] / src / ICoCo / ICoCoMEDIntField.hxx
1 // Copyright (C) 2007-2019  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
20 // WARNING: this file is part of the official ICoCo API and should not be modified.
21 // The official version can be found at the following URL:
22 //
23 //    https://github.com/cea-trust-platform/icoco-coupling
24
25 #ifndef ICoCoMEDIntField_included
26 #define ICoCoMEDIntField_included
27
28 #include "ICoCoField.hxx"
29
30 namespace MEDCoupling
31 {
32   class MEDCouplingFieldInt32;
33 }
34
35 namespace ICoCo
36 {
37   /*! @brief Field data stored internally as a MEDCoupling object.
38    *
39    * This class is a wrapper around a MEDCoupling::MEDCouplingFieldInt32 object, which holds the field data.
40    * In version 2 of ICoCo, MEDCoupling objects are not anymore exposed directly into the API
41    * of ICoCo::Problem. The rationale is to make the interface ICoCo::Problem free of external dependencies
42    * (MEDCoupling particularly).
43    *
44    * @sa the MEDCoupling documentation, notably the reference counter mechanism used to manage the lifecycle of
45    * MEDCoupling objects.
46    */
47   class MEDIntField : public ICoCo::Field
48   {
49   public:
50     /*! Builds an empty field (internal MEDCoupling object not set).
51      */
52     MEDIntField();
53
54     /*! @brief Builds a field and assign its internal MEDCouplingField object.
55      *
56      * The name of 'this' is also automatically set the name of the MEDCouplingField object. If 'field' is null
57      * the name is set to the empty string.
58      *
59      * @param field MEDCoupling field instance to use for field data. The field reference counter is incremented.
60      */
61     MEDIntField(MEDCoupling::MEDCouplingFieldInt32* field);
62
63     /*! @brief Copy construcotr.
64      */
65     MEDIntField(const MEDIntField& field);
66
67     /*! @brief Assignement operator.
68      * @param field another MEDDoubleField instance. The previous internal MEDCoupling field reference (if any) has
69      * its counter decremented.
70      */
71     MEDIntField& operator=(const MEDIntField& field);
72
73     /*! @brief Destructor.
74      */
75     virtual ~MEDIntField();
76
77     /*! @brief Get the internal MEDCoupling field object.
78      * @return a pointer to the MEDCouplingField object detained by this instance. Note that the corresponding
79      * object should not be deleted, or its reference counter should not be decreased! Doing so will result in an
80      * invalid instance of the current MEDField.
81      */
82     MEDCoupling::MEDCouplingFieldInt32 *getMCField() const;
83
84     /*! @brief Set the internal MEDCoupling field object.
85      *
86      * Any previously set field is discarded (its reference counter is decreased) and the reference counter of the
87      * field being set is increased.
88      *
89      * The name of 'this' is also automatically set the name of the MEDCouplingField object. If 'field' is nullptr
90      * the name is reset to the empty string.
91      *
92      * @param field MEDCouplingFieldDouble object to be used.
93      */
94     void setMCField(MEDCoupling::MEDCouplingFieldInt32 * f);
95
96   private:
97     MEDCoupling::MEDCouplingFieldInt32 *_field;
98   };
99 } // namespace ICoCo
100
101 #endif