Sparksee
6.0.2
|
String list. More...
Public Member Functions | |
int32_t | Count () const |
Number of elements in the list. More... | |
StringListIterator * | Iterator () |
Gets a new StringListIterator. More... | |
StringList () | |
Constructor. More... | |
StringList (const std::vector< std::wstring > &v) | |
Constructor. More... | |
~StringList () | |
Destructor. | |
void | Add (const std::wstring &str) |
Adds a String at the end of the list. More... | |
void | Clear () |
Clears the list. | |
String list.
It stores a String (unicode) list.
Use StringListIterator to access all elements into this collection.
StringList::StringList | ( | ) |
Constructor.
This creates an empty list.
StringList::StringList | ( | const std::vector< std::wstring > & | v | ) |
Constructor.
v | [in] Vector. |
|
inline |
Adds a String at the end of the list.
str | [in] String. |
|
inline |
Number of elements in the list.
StringListIterator* StringList::Iterator | ( | ) |
Gets a new StringListIterator.