27 #include "../common/STLUtils.h" 
   45   return  m_spatialOperators.size();
 
   51   m_spatialOperators.push_back(sOp);
 
   56   assert(i < m_spatialOperators.size());
 
   57   return m_spatialOperators[i];
 
void push_back(SpatialOperator *sOp)
It adds the spatial operator to the list. 
 
void FreeContents(boost::unordered_map< K, V * > &m)
This function can be applied to a map of pointers. It will delete each pointer in the map...
 
size_t size() const 
It returns the number of operators. 
 
SpatialOperators()
It initializes a new SpatialOperators. 
 
~SpatialOperators()
Destructor. 
 
const SpatialOperator * operator[](size_t i) const 
It returns a specified operator.