Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkInteriorExteriorSpatialFunction.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkInteriorExteriorSpatialFunction.h,v $
00005   Language:  C++
00006   Date:      $Date: 2007/01/31 13:26:05 $
00007   Version:   $Revision: 1.18 $
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 __itkInteriorExteriorSpatialFunction_h
00018 #define __itkInteriorExteriorSpatialFunction_h
00019 
00020 #include "itkSpatialFunction.h"
00021 
00022 namespace itk
00023 {
00024 
00047 template <unsigned int VDimension=3,typename TInput=Point<double,VDimension> >
00048 class ITK_EXPORT InteriorExteriorSpatialFunction : public
00049   SpatialFunction<bool, VDimension, TInput >
00050 {
00051 public:
00053   typedef InteriorExteriorSpatialFunction Self;
00054   typedef SpatialFunction<bool, VDimension,TInput> Superclass;
00055   typedef SmartPointer<Self>  Pointer;
00056   typedef SmartPointer<const Self>  ConstPointer;
00057 
00059   itkTypeMacro(InteriorExteriorSpatialFunction, SpatialFunction);
00060 
00062   typedef typename Superclass::InputType InputType;
00063 
00065   typedef typename Superclass::OutputType OutputType;
00066 
00071   virtual OutputType Evaluate( const InputType& input ) const = 0;
00072 
00073 protected:
00074   InteriorExteriorSpatialFunction();
00075   virtual ~InteriorExteriorSpatialFunction();
00076   void PrintSelf(std::ostream& os, Indent indent) const;
00077 
00078 private:
00079   InteriorExteriorSpatialFunction(const Self&); //purposely not implemented
00080   void operator=(const Self&); //purposely not implemented
00081   
00082 };
00083 
00084 } // end namespace itk
00085 
00086 // Define instantiation macro for this template.
00087 #define ITK_TEMPLATE_InteriorExteriorSpatialFunction(_, EXPORT, x, y) namespace itk { \
00088   _(2(class EXPORT InteriorExteriorSpatialFunction< ITK_TEMPLATE_2 x >)) \
00089   namespace Templates { typedef InteriorExteriorSpatialFunction< ITK_TEMPLATE_2 x > \
00090                                   InteriorExteriorSpatialFunction##y; } \
00091   }
00092 
00093 #if ITK_TEMPLATE_EXPLICIT
00094 # include "Templates/itkInteriorExteriorSpatialFunction+-.h"
00095 #endif
00096 
00097 #if ITK_TEMPLATE_TXX
00098 # include "itkInteriorExteriorSpatialFunction.txx"
00099 #endif
00100 
00101 #endif
00102 

Generated at Wed Nov 5 22:26:16 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000