Definition at line 194 of file qstringbuilder.h.
#include <qstringbuilder.h>
Public Types |
|
| enum | { ExactSize = true } |
| typedef QLatin1Literal | type |
Static Public Member Functions |
|
| static int | size (const QLatin1Literal &a) |
| static void | appendTo (const QLatin1Literal &a, QChar *&out) |
| typedef QLatin1Literal type |
Definition at line 196 of file qstringbuilder.h.
| anonymous enum |
Definition at line 197 of file qstringbuilder.h.
{ ExactSize = true };
| static int size | ( | const QLatin1Literal & | a | ) | [inline, static] |
| static void appendTo | ( | const QLatin1Literal & | a, |
| QChar *& | out | ||
| ) | [inline, static] |
Definition at line 199 of file qstringbuilder.h.
{
for (const char *s = a.data(); *s; )
*out++ = QLatin1Char(*s++);
}