|
Aegis
4.25.D505
|
#include <list.h>
Public Member Functions | |
| ~wstring_list () | |
| wstring_list () | |
| wstring_list (const wstring_list &arg) | |
| wstring_list & | operator= (const wstring_list &) |
| void | push_back (const wstring &arg) |
| void | push_back (const wstring_list &arg) |
| const wstring | back () const |
| size_t | size () const |
| bool | empty () const |
| void | clear () |
| wstring | get (int n) const |
| wstring | operator[] (int n) const |
| wstring | unsplit (const char *separator=0) const |
| wstring | unsplit (size_t first, size_t last, const char *separator=0) const |
Private Attributes | |
| wstring_list_ty | content |
The wstring_list class is used to represent a dynamically sized list of wstrings.
| wstring_list::~wstring_list | ( | ) | [inline] |
| wstring_list::wstring_list | ( | ) | [inline] |
| wstring_list::wstring_list | ( | const wstring_list & | arg | ) | [inline] |
| const wstring wstring_list::back | ( | void | ) | const [inline] |
| void wstring_list::clear | ( | ) |
The clear method is used to discard all elemets of a string list.
| bool wstring_list::empty | ( | void | ) | const [inline] |
| wstring wstring_list::get | ( | int | n | ) | const |
The get is used to obtain the value of the nth element of a string list.
| wstring_list& wstring_list::operator= | ( | const wstring_list & | ) |
The assignment operator.
| wstring wstring_list::operator[] | ( | int | n | ) | const [inline] |
| void wstring_list::push_back | ( | const wstring & | arg | ) | [inline] |
| void wstring_list::push_back | ( | const wstring_list & | arg | ) |
The push_back method is used to add a string to the end of a string list.
| size_t wstring_list::size | ( | void | ) | const [inline] |
| wstring wstring_list::unsplit | ( | const char * | separator = 0 | ) | const |
The unsplit method is used to form a single string by gluing all of the string list members together.
| separator | what to put between the strings, defaults to a single cpace. |
| wstring wstring_list::unsplit | ( | size_t | first, |
| size_t | last, | ||
| const char * | separator = 0 |
||
| ) | const |
The unsplit method is used to form a single string by gluing all of the string list members together.
| first | The place to start joining |
| last | how many to join |
| separator | what to put between the strings, defaults to a single cpace. |
wstring_list_ty wstring_list::content [private] |
1.7.6.1