00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkQuadEdgeMeshEulerOperatorJoinFacetFunction.h,v $ 00005 Language: C++ 00006 Date: $Date: 2008-02-07 15:07:58 $ 00007 Version: $Revision: 1.3 $ 00008 00009 Copyright (c) Insight Software Consortium. All rights reserved. 00010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef __itkQuadEdgeMeshEulerOperatorJoinFacetFunction_h 00018 #define __itkQuadEdgeMeshEulerOperatorJoinFacetFunction_h 00019 00020 #include "itkQuadEdgeMeshFunctionBase.h" 00021 00022 namespace itk 00023 { 00030 template < class TMesh, class TQEType > 00031 class ITK_EXPORT QuadEdgeMeshEulerOperatorJoinFacetFunction : 00032 public QuadEdgeMeshFunctionBase< TMesh, TQEType* > 00033 { 00034 public: 00035 00037 typedef QuadEdgeMeshEulerOperatorJoinFacetFunction Self; 00038 typedef QuadEdgeMeshFunctionBase< TMesh, TQEType* > Superclass; 00039 typedef SmartPointer< Self > Pointer; 00040 typedef SmartPointer< const Self > ConstPointer; 00041 00042 itkNewMacro( Self ); 00044 itkTypeMacro( QuadEdgeMeshEulerOperatorJoinFacetFunction, QuadEdgeMeshFunctionBase ); 00045 00047 typedef TQEType QEType; 00048 00049 typedef typename Superclass::MeshType MeshType; 00050 typedef typename Superclass::OutputType OutputType; 00051 00053 virtual OutputType Evaluate( QEType* e ); 00054 00055 protected: 00056 QuadEdgeMeshEulerOperatorJoinFacetFunction(){}; 00057 ~QuadEdgeMeshEulerOperatorJoinFacetFunction(){}; 00058 00059 private: 00060 QuadEdgeMeshEulerOperatorJoinFacetFunction(const Self& ); //purposely not implemented 00061 void operator=(const Self& ); //purposely not implemented 00062 00063 }; 00064 00065 } // namespace itk 00066 00067 #include "itkQuadEdgeMeshEulerOperatorJoinFacetFunction.txx" 00068 00069 #endif 00070 00071 // eof - $RCSfile: itkQuadEdgeMeshEulerOperatorJoinFacetFunction.h,v $ 00072