00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
#ifndef __itkNodeList_h
00018
#define __itkNodeList_h
00019
00020
#include <list>
00021
00022
namespace itk
00023 {
00024
00033
template <
typename TItemType>
00034 class NodeList :
public std::
list< TItemType >
00035 {
00036
public:
00037
00039 TItemType * ItemPointer;
00040
00042 void SetItemPointer(TItemType* itemPointer) {ItemPointer = itemPointer;}
00043
00045 unsigned long int GetSize()
00046 {
return this->size(); }
00047
00048
NodeList();
00049
~NodeList();
00050
00051
private:
00052
00053 };
00054
00055
00056 }
00057
00058
#ifndef ITK_MANUAL_INSTANTIATION
00059
#include "itkNodeList.txx"
00060
#endif
00061
00062
#endif