| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itkSpatialFunction.txx.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:48 $ |
| 7 |
|
Version: $Revision: 1.4 $ |
| 8 |
|
|
| 9 |
|
Copyright (c) Insight Software Consortium. All rights reserved. |
| 10 |
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. |
| 11 |
|
|
| 12 |
|
This software is distributed WITHOUT ANY WARRANTY; without even |
| 13 |
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 |
|
PURPOSE. See the above copyright notices for more information. |
| 15 |
|
|
| 16 |
|
=========================================================================*/ |
| 17 |
|
#ifndef __itkSpatialFunction_txx |
| 18 |
|
#define __itkSpatialFunction_txx |
| 19 |
|
|
| 20 |
|
#include "itkSpatialFunction.h" |
| 21 |
|
|
| 22 |
|
namespace itk |
| 23 |
|
{ |
| 24 |
|
|
| 25 |
LEN |
template <typename TFunctionValue, unsigned int VImageDimension, typename TInput> |
| 26 |
|
SpatialFunction<TFunctionValue, VImageDimension,TInput> |
| 27 |
|
::SpatialFunction() |
| 28 |
|
{ |
| 29 |
|
|
| 30 |
|
} |
| 31 |
|
|
| 32 |
LEN |
template <typename TFunctionValue, unsigned int VImageDimension, typename TInput> |
| 33 |
|
SpatialFunction<TFunctionValue, VImageDimension,TInput> |
| 34 |
|
::~SpatialFunction() |
| 35 |
|
{ |
| 36 |
|
|
| 37 |
|
} |
| 38 |
|
|
| 39 |
LEN |
template <typename TFunctionValue, unsigned int VImageDimension, typename TInput> |
| 40 |
|
void |
| 41 |
|
SpatialFunction<TFunctionValue, VImageDimension,TInput> |
| 42 |
|
::PrintSelf(std::ostream& os, Indent indent) const |
| 43 |
|
{ |
| 44 |
|
Superclass::PrintSelf(os,indent); |
| 45 |
|
} |
| 46 |
|
|
| 47 |
|
} // end namespace itk |
| 48 |
|
|
| 49 |
|
#endif |
| 50 |
|
|