27 #include "../common/STLUtils.h" 
   45   return m_sortPropertyVector.size();
 
   50   m_sortPropertyVector.push_back(p);
 
   55   assert(i < m_sortPropertyVector.size());
 
   56   return m_sortPropertyVector[i];
 
It represents a sort by expression. 
 
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...
 
A sort property name and order type. 
 
A sort property name and order type. 
 
const SortProperty * operator[](std::size_t index) const 
It returns a specified property. 
 
std::size_t size() const 
It returns the number of sort expressions. 
 
SortBy()
It initializes a new SortBy. 
 
void push_back(SortProperty *p)
It adds the property to the sort list.