#include <HxValueList.h>
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... | |
Specialization of list from STL.
|
|
back inserter.
|
|
|
Add value to the list.
00048 {
00049 push_back(s);
00050 return *this;
00051 }
|
|
|
Remove all values from the list.
00055 {
00056 erase(begin(), end());
00057 }
|
1.2.12 written by Dimitri van Heesch,
© 1997-2001