]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Interface/PointList.cxx
...
[cpPlugins.git] / lib / cpPlugins / Interface / PointList.cxx
1 #include <cpPlugins/Interface/PointList.h>
2
3 // -------------------------------------------------------------------------
4 unsigned long cpPlugins::Interface::PointList::
5 GetNumberOfPoints( ) const
6 {
7   return( this->m_NumberOfPoints );
8 }
9
10 // -------------------------------------------------------------------------
11 void cpPlugins::Interface::PointList::
12 Clear( )
13 {
14   this->m_ITKObject = NULL;
15   this->m_VTKObject = NULL;
16   this->m_NumberOfPoints = 0;
17 }
18
19 // -------------------------------------------------------------------------
20 cpPlugins::Interface::PointList::
21 PointList( )
22   : Superclass( )
23 {
24   this->Clear( );
25 }
26
27 // -------------------------------------------------------------------------
28 cpPlugins::Interface::PointList::
29 ~PointList( )
30 {
31 }
32
33 // eof - $RCSfile$