#include <tinystr.h>

Classes | |
| struct | Rep |
Public Types | |
| typedef size_t | size_type |
Public Member Functions | |
| TiXmlString & | append (const char *str, size_type len) |
| TiXmlString & | assign (const char *str, size_type len) |
| const char & | at (size_type index) const |
| const char * | c_str () const |
| size_type | capacity () const |
| void | clear () |
| const char * | data () const |
| bool | empty () const |
| size_type | find (char lookup) const |
| size_type | find (char tofind, size_type offset) const |
| size_type | length () const |
| TiXmlString & | operator+= (const char *suffix) |
| TiXmlString & | operator+= (char single) |
| TiXmlString & | operator+= (const TiXmlString &suffix) |
| TiXmlString & | operator= (const char *copy) |
| TiXmlString & | operator= (const TiXmlString ©) |
| char & | operator[] (size_type index) const |
| void | reserve (size_type cap) |
| size_type | size () const |
| void | swap (TiXmlString &other) |
| TiXmlString () | |
| TiXmlString (const TiXmlString ©) | |
| TIXML_EXPLICIT | TiXmlString (const char *copy) |
| TIXML_EXPLICIT | TiXmlString (const char *str, size_type len) |
| ~TiXmlString () | |
Static Public Attributes | |
| static const size_type | npos = static_cast< TiXmlString::size_type >(-1) |
Private Member Functions | |
| char * | finish () const |
| void | init (size_type sz) |
| void | init (size_type sz, size_type cap) |
| void | quit () |
| void | set_size (size_type sz) |
| char * | start () const |
Private Attributes | |
| Rep * | rep_ |
Static Private Attributes | |
| static Rep | nullrep_ = { 0, 0, { '\0' } } |
| typedef size_t TiXmlString::size_type |
|
inline |
|
inline |
|
inline |
| TiXmlString & TiXmlString::append | ( | const char * | str, |
| size_type | len | ||
| ) |
Definition at line 68 of file tinystr.cpp.
| TiXmlString & TiXmlString::assign | ( | const char * | str, |
| size_type | len | ||
| ) |
Definition at line 49 of file tinystr.cpp.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| void TiXmlString::reserve | ( | size_type | cap | ) |
Definition at line 37 of file tinystr.cpp.
|
inline |
|
static |
|
staticprivate |