Spatial operators. More...
#include <SpatialOperators.h>
Public Member Functions | |
Initializer Methods | |
Methods related to instantiation and destruction. | |
SpatialOperators () | |
It initializes a new SpatialOperators. More... | |
~SpatialOperators () | |
Destructor. More... | |
Accessor methods | |
Methods used to get or set properties. | |
size_t | size () const |
It returns the number of operators. More... | |
void | push_back (SpatialOperator *sOp) |
It adds the spatial operator to the list. More... | |
const SpatialOperator * | operator[] (size_t i) const |
It returns a specified operator. More... | |
Private Attributes | |
std::vector< SpatialOperator * > | m_spatialOperators |
Mandatory at least one. More... | |
Spatial operators.
Definition at line 49 of file SpatialOperators.h.
te::fe::SpatialOperators::SpatialOperators | ( | ) |
It initializes a new SpatialOperators.
te::fe::SpatialOperators::~SpatialOperators | ( | ) |
Destructor.
const SpatialOperator* te::fe::SpatialOperators::operator[] | ( | size_t | i | ) | const |
It returns a specified operator.
i | The index of desired operator. |
void te::fe::SpatialOperators::push_back | ( | SpatialOperator * | sOp | ) |
It adds the spatial operator to the list.
sOp | The spatial operator to be added to the list. |
size_t te::fe::SpatialOperators::size | ( | ) | const |
It returns the number of operators.
|
private |
Mandatory at least one.
Definition at line 104 of file SpatialOperators.h.