SCIRun  5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MeshTypes.h
Go to the documentation of this file.
1 /*
2  For more information, please see: http://software.sci.utah.edu
3 
4  The MIT License
5 
6  Copyright (c) 2009 Scientific Computing and Imaging Institute,
7  University of Utah.
8 
9 
10  Permission is hereby granted, free of charge, to any person obtaining a
11  copy of this software and associated documentation files (the "Software"),
12  to deal in the Software without restriction, including without limitation
13  the rights to use, copy, modify, merge, publish, distribute, sublicense,
14  and/or sell copies of the Software, and to permit persons to whom the
15  Software is furnished to do so, subject to the following conditions:
16 
17  The above copyright notice and this permission notice shall be included
18  in all copies or substantial portions of the Software.
19 
20  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26  DEALINGS IN THE SOFTWARE.
27 */
28 
29 ///
30 ///@file MeshTypes.h
31 ///@brief Forward declarations of Mesh get_type_description.
32 ///
33 ///@author
34 /// Michael Callahan
35 /// Department of Computer Science
36 /// University of Utah
37 ///@date January 2005
38 ///
39 ///@details
40 /// The GCC 3.4 compiler will not compile the GenericField template
41 /// without these being declared ahead of time. It will compile one
42 /// field include because the mesh is included before GenericField.
43 /// However if you include two field files it will fail because the
44 /// second one is not declared before the GenericField.h insertion
45 /// point. It fails in order_type_description.
46 ///
47 
48 #ifndef Datatypes_MeshTypes_h
49 #define Datatypes_MeshTypes_h
50 
51 namespace SCIRun {
52 
53 class CurveMeshNode;
54 class CurveMeshEdge;
55 const TypeDescription *get_type_description(CurveMeshNode *);
56 const TypeDescription *get_type_description(CurveMeshEdge *);
57 
58 class HexVolMeshNode;
59 class HexVolMeshCell;
60 const TypeDescription *get_type_description(HexVolMeshNode *);
61 const TypeDescription *get_type_description(HexVolMeshCell *);
62 
63 class ImageMeshNode;
64 class ImageMeshFace;
65 const TypeDescription *get_type_description(ImageMeshNode *);
66 const TypeDescription *get_type_description(ImageMeshFace *);
67 
68 class LatVolMeshNode;
69 class LatVolMeshCell;
70 const TypeDescription *get_type_description(LatVolMeshNode *);
71 const TypeDescription *get_type_description(LatVolMeshCell *);
72 
73 class MaskedLatVolMeshNode;
74 class MaskedLatVolMeshCell;
75 const TypeDescription *get_type_description(MaskedLatVolMeshNode *);
76 const TypeDescription *get_type_description(MaskedLatVolMeshCell *);
77 
78 class PointCloudMeshNode;
79 const TypeDescription *get_type_description(PointCloudMeshNode *);
80 
81 class PrismVolMeshNode;
82 class PrismVolMeshCell;
83 const TypeDescription *get_type_description(PrismVolMeshNode *);
84 const TypeDescription *get_type_description(PrismVolMeshCell *);
85 
86 class QuadraticLatVolMeshNode;
87 const TypeDescription *get_type_description(QuadraticLatVolMeshNode *);
88 
89 class QuadSurfMeshNode;
90 class QuadSurfMeshFace;
91 const TypeDescription *get_type_description(QuadSurfMeshNode *);
92 const TypeDescription *get_type_description(QuadSurfMeshFace *);
93 
94 class ScanlineMeshNode;
95 class ScanlineMeshEdge;
96 const TypeDescription *get_type_description(ScanlineMeshNode *);
97 const TypeDescription *get_type_description(ScanlineMeshEdge *);
98 
99 class TetVolMeshNode;
100 class TetVolMeshCell;
101 const TypeDescription *get_type_description(TetVolMeshNode *);
102 const TypeDescription *get_type_description(TetVolMeshCell *);
103 
104 class TriSurfMeshNode;
105 class TriSurfMeshFace;
106 const TypeDescription *get_type_description(TriSurfMeshNode *);
107 const TypeDescription *get_type_description(TriSurfMeshFace *);
108 
109 } // end namespace SCIRun
110 
111 #endif // Datatypes_MeshTypes_h
const TypeDescription * get_type_description(Core::Basis::ConstantBasis< T > *)
Definition: Constant.h:209