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

HxStringList Class Reference

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

#include <HxStringList.h>

List of all members.

Public Types

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


Public Methods

 HxStringList ()
 HxStringList (const std::list< std::string > &l)
 HxStringList (const std::vector< std::string > &l)
HxStringList & operator<< (const HxString &)
 Add string to the list. More...

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


Detailed Description

Class definition for list of HxString's.

Specialization of list from STL.


Member Typedef Documentation

typedef std::back_insert_iterator<HxStringList> HxStringList::back_insert_iterator
 

back inserter.


Member Function Documentation

HxStringList & HxStringList::operator<< const HxString   s [inline]
 

Add string to the list.

00052 {
00053     push_back(s);
00054     return *this;
00055 }

void HxStringList::eraseAll   [inline]
 

Remove all value from the list.

00059 {
00060     erase(begin(), end());
00061 }


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