Salome HOME
Fix test case hang-up
[modules/paravis.git] / src / Plugins / MedReader / IO / vtkMedConstantAttribute.cxx
1 // Copyright (C) 2010-2013  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.
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 #include "vtkMedConstantAttribute.h"
21
22 #include "vtkObjectFactory.h"
23 #include "vtkMedUtilities.h"
24
25 #include "vtkAbstractArray.h"
26 #include "vtkMedStructElement.h"
27 #include "vtkMedProfile.h"
28
29 #include <map>
30 #include <string>
31 #include <vector>
32 using namespace std;
33
34 // vtkCxxRevisionMacro(vtkMedConstantAttribute, "$Revision$")
35 vtkStandardNewMacro(vtkMedConstantAttribute);
36
37 vtkCxxSetObjectMacro(vtkMedConstantAttribute, Values, vtkAbstractArray);
38 vtkCxxSetObjectMacro(vtkMedConstantAttribute, ParentStructElement, vtkMedStructElement);
39 vtkCxxSetObjectMacro(vtkMedConstantAttribute, Profile, vtkMedProfile);
40
41 vtkMedConstantAttribute::vtkMedConstantAttribute()
42 {
43   this->Name = NULL;
44   this->AttributeType = MED_ATT_UNDEF;
45   this->NumberOfComponent = 0;
46   this->SupportEntityType = MED_UNDEF_ENTITY_TYPE;
47   this->ProfileName = NULL;
48   this->ProfileSize = 0;
49   this->Values = NULL;
50   this->ParentStructElement = NULL;
51   this->Profile = NULL;
52 }
53
54 vtkMedConstantAttribute::~vtkMedConstantAttribute()
55 {
56   this->SetName(NULL);
57   this->SetProfileName(NULL);
58   this->SetParentStructElement(NULL);
59   this->SetValues(NULL);
60   this->SetProfile(NULL);
61 }
62
63 void vtkMedConstantAttribute::PrintSelf(ostream& os, vtkIndent indent)
64 {
65   this->Superclass::PrintSelf(os, indent);
66 }