Horus Doc || C++ Reference || Class Overview   Pixels   Images   Detector   Geometry   Registry || Doxygen's quick Index  

HxValueList Class Reference

Class definition for list of HxValue's. More...

#include <HxValueList.h>

List of all members.

Public Types

typedef std::back_insert_iterator<
HxValueList > 
back_insert_iterator
 back inserter. More...


Public Methods

HxValueList & operator<< (const HxValue &)
 Add value to the list. More...

void eraseAll ()
 Remove all values from the list. More...


Detailed Description

Class definition for list of HxValue's.

Specialization of list from STL.


Member Typedef Documentation

typedef std::back_insert_iterator<HxValueList> HxValueList::back_insert_iterator
 

back inserter.


Member Function Documentation

HxValueList & HxValueList::operator<< const HxValue   s [inline]
 

Add value to the list.

00048 {
00049     push_back(s);
00050     return *this;
00051 }

void HxValueList::eraseAll   [inline]
 

Remove all values from the list.

00055 {
00056     erase(begin(), end());
00057 }


The documentation for this class was generated from the following file:
Generated on Tue Feb 3 14:19:10 2004 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001