#include <HxPointList.h>
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... |
|
back inserter.
|
|
Add point to the list.
00047 { 00048 push_back(s); 00049 return *this; 00050 } |
|
Remove all points from the list.
00054 { 00055 erase(begin(), end()); 00056 } |