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

HxPointList Class Reference

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

#include <HxPointList.h>

List of all members.

Public Types

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


Public Methods

HxPointList & operator<< (const HxPoint &)
 Add point to the list. More...

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


Detailed Description

Class definition for list of HxPoint's.


Member Typedef Documentation

typedef std::back_insert_iterator<HxPointList> HxPointList::back_insert_iterator
 

back inserter.


Member Function Documentation

HxPointList & HxPointList::operator<< const HxPoint   s [inline]
 

Add point to the list.

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

void HxPointList::eraseAll   [inline]
 

Remove all points from the list.

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


The documentation for this class was generated from the following file:
Generated on Mon Jan 27 15:49:08 2003 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001