00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __itkQuadEdgeMeshFunctionBase_h
00019 #define __itkQuadEdgeMeshFunctionBase_h
00020
00021 #include <itkObject.h>
00022 #include <itkObjectFactory.h>
00023
00024 namespace itk
00025 {
00026
00054 template < class TMesh, class TOutput >
00055 class ITK_EXPORT QuadEdgeMeshFunctionBase : public Object
00056 {
00057 public:
00058
00060 typedef QuadEdgeMeshFunctionBase Self;
00061 typedef Object Superclass;
00062 typedef SmartPointer<Self> Pointer;
00063 typedef SmartPointer<const Self> ConstPointer;
00064
00066 itkTypeMacro(QuadEdgeMeshFunctionBase, Object);
00067
00069 typedef TMesh MeshType;
00070 typedef typename MeshType::EdgeCellType EdgeCellType;
00071
00073 typedef TOutput OutputType;
00074
00076 virtual void SetInput( MeshType* input )
00077 {
00078 this->m_Mesh = input;
00079 }
00080
00082
00083
00084
00085
00086
00087 protected:
00088 QuadEdgeMeshFunctionBase()
00089 {
00090 m_Mesh = (MeshType*) 0;
00091 }
00092 ~QuadEdgeMeshFunctionBase(){};
00093
00094 private:
00095 QuadEdgeMeshFunctionBase(const Self& );
00096 void operator=(const Self& );
00097
00098 protected:
00100 MeshType* m_Mesh;
00101
00102 };
00103
00104 }
00105
00106 #endif
00107
00108
00109