Salome HOME
Fix test case hang-up
[modules/paravis.git] / src / Plugins / MedReader / IO / vtkMedGroup.h
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 #ifndef __vtkMedGroup_h_
21 #define __vtkMedGroup_h_
22
23 #include "vtkObject.h"
24
25 class vtkMedString;
26
27 class VTK_EXPORT vtkMedGroup : public vtkObject
28 {
29 public :
30   static vtkMedGroup* New();
31   vtkTypeMacro(vtkMedGroup, vtkObject)
32   void PrintSelf(ostream& os, vtkIndent indent);
33
34   // Description:
35   // This is the description of this file as stored in the med file.
36   vtkGetStringMacro(Name);
37   vtkSetStringMacro(Name);
38
39   // Description:
40   // This ivar says if this group contains point or cell families
41   // This value is either vtkMedUtilities::OnPoint or vtkMedUtilities::OnCell
42 //  vtkSetMacro(PointOrCell, int);
43 //  vtkGetMacro(PointOrCell, int);
44
45 protected:
46   vtkMedGroup();
47   virtual ~vtkMedGroup();
48
49   char* Name;
50
51 private:
52   vtkMedGroup(const vtkMedGroup&); // Not implemented.
53   void operator=(const vtkMedGroup&); // Not implemented.
54
55 };
56
57 #endif //__vtkMedGroup_h_