#include <HxStringList.h>
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... |
Specialization of list from STL.
|
back inserter.
|
|
Add string to the list.
00052 { 00053 push_back(s); 00054 return *this; 00055 } |
|
Remove all value from the list.
00059 { 00060 erase(begin(), end()); 00061 } |