Main Page   Class Overview   Pixels   Images   Geometry   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.

Specialization of list from STL.


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.

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

void HxPointList::eraseAll   [inline]
 

Remove all points from the list.

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


The documentation for this class was generated from the following file:
Generated on Tue Jan 8 13:59:33 2002 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001