Salome HOME
Merging with the MAN_SALOME2 branch
[modules/med.git] / src / MedClient / src / GROUPClient.cxx
1 #include "GROUPClient.hxx"
2 #include "MESHClient.hxx"
3 using namespace MEDMEM;
4
5 //=============================================================================
6 /*!
7  * Constructeur
8  */
9 //=============================================================================
10
11 GROUPClient::GROUPClient(const SALOME_MED::GROUP_ptr G,
12                          MESH * M) 
13   : SUPPORTClient(G, M),
14     GROUP(),
15     IOR_Group(SALOME_MED::GROUP::_duplicate(G))
16 {
17   BEGIN_OF("GROUPClient::GROUPClient()");
18
19   SCRUTE(G);
20   SCRUTE(M);
21
22   END_OF("GROUPClient::GROUPClient()");
23 }
24
25 //=============================================================================
26 /*!
27  * Remplit les informations générales
28  */
29 //=============================================================================
30 void GROUPClient::blankCopy()
31 {
32   BEGIN_OF("GROUPClient::blankCopy()");
33
34   SUPPORTClient::blankCopy();
35   _complete = false;
36
37   END_OF("GROUPClient::blankCopy()");
38 }
39 //=============================================================================
40 /*!
41  * Remplit les informations 
42  */
43 //=============================================================================
44
45 void GROUPClient::fillCopy()
46 {
47   BEGIN_OF("GROUPClient::fillCopy()");
48
49   SUPPORTClient::fillCopy();
50   _complete = true;
51
52   END_OF("GROUPClient::fillCopy()");
53 }
54
55 //=============================================================================
56 /*!
57  * Destructeur
58  */
59 //=============================================================================
60
61 GROUPClient::~GROUPClient()
62 {
63   BEGIN_OF("GROUPClient::~GROUPClient()");
64   END_OF("GROUPClient::~GROUPClient()");
65 }