| 1 |
|
/*========================================================================= |
| 2 |
|
|
| 3 |
|
Program: Insight Segmentation & Registration Toolkit |
| 4 |
|
Module: $RCSfile: itkBloxBoundaryPointPixel.h.html,v $ |
| 5 |
|
Language: C++ |
| 6 |
|
Date: $Date: 2006/01/17 19:15:33 $ |
| 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 __itkBloxBoundaryPointPixel_h |
| 18 |
|
#define __itkBloxBoundaryPointPixel_h |
| 19 |
|
|
| 20 |
|
#include "itkBloxBoundaryPointItem.h" |
| 21 |
|
#include "itkBloxPixel.h" |
| 22 |
|
|
| 23 |
|
namespace itk |
| 24 |
|
{ |
| 25 |
|
|
| 26 |
|
/** |
| 27 |
|
* \class BloxBoundaryPointPixel |
| 28 |
|
* \brief Holds a linked list of itk::BloxBoundaryPointItem's. |
| 29 |
|
* |
| 30 |
|
* \ingroup ImageObjects |
| 31 |
|
* */ |
| 32 |
|
|
| 33 |
|
template <unsigned int NDimensions> |
| 34 |
LEN |
class ITK_EXPORT BloxBoundaryPointPixel : public BloxPixel< BloxBoundaryPointItem<NDimensions> > |
| 35 |
|
{ |
| 36 |
|
public: |
| 37 |
|
BloxBoundaryPointPixel(); |
| 38 |
|
~BloxBoundaryPointPixel(); |
| 39 |
|
}; |
| 40 |
|
|
| 41 |
|
} // end namespace itk |
| 42 |
|
|
| 43 |
|
#ifndef ITK_MANUAL_INSTANTIATION |
| 44 |
|
#include "itkBloxBoundaryPointPixel.txx" |
| 45 |
|
#endif |
| 46 |
|
|
| 47 |
|
#endif |
| 48 |
|
|