#include <itkFEMPArray.h>
Public Types | |
typedef FEMPArray | Self |
typedef std::vector< FEMP< T > > | Superclass |
typedef Self * | Pointer |
typedef const Self * | ConstPointer |
typedef T | ClassType |
typedef ClassType::Pointer | ClassTypePointer |
typedef ClassType::ConstPointer | ClassTypeConstPointer |
Public Member Functions | |
ClassTypePointer | operator() (int i) |
ClassTypeConstPointer | operator() (int i) const |
int | Renumber () |
ClassTypePointer | Find (int gn) |
ClassTypeConstPointer | Find (int gn) const |
Array class that holds special pointers to objects. Every object must contain a variable member of type int called GN (global number). You can search for an object with specific GN within an array.
Definition at line 40 of file itkFEMPArray.h.
|
Easy (and required on MSVC) access to the base class of objects inside the array. Definition at line 63 of file itkFEMPArray.h. |
|
Definition at line 65 of file itkFEMPArray.h. |
|
Definition at line 64 of file itkFEMPArray.h. |
|
Definition at line 58 of file itkFEMPArray.h. |
|
Dumb pointer typedef support. Definition at line 57 of file itkFEMPArray.h. |
|
Standard Self typedef Definition at line 47 of file itkFEMPArray.h. |
|
Standard Superclass typedef Definition at line 52 of file itkFEMPArray.h. |
|
Find function for for const objects We din't find an object with that GN... Return a pointer to the found object. Definition at line 147 of file itkFEMPArray.h. |
|
Finds and returns a pointer to the object with specific global number We din't find an object with that GN... Return a pointer to the found object. Definition at line 108 of file itkFEMPArray.h. |
|
Returns a pointer to i-th object stored in an array (not a pointer to FEMP of that object). This function works on the const arrays. Definition at line 86 of file itkFEMPArray.h. |
|
Returns a pointer to i-th object stored in an array (not a pointer to FEMP of that object). Definition at line 77 of file itkFEMPArray.h. |
|
Applies new numbers to objects in array so that they are in order (0,1,2,...). This speeds up finding object by global number a lot. The function returns total number of objects in an array. Definition at line 182 of file itkFEMPArray.h. |