Public Types | Static Public Member Functions

QConcatenable< QLatin1Literal > Struct Template Reference

Search for all occurrences

Detailed Description

template<>
struct QConcatenable< QLatin1Literal >

Definition at line 194 of file qstringbuilder.h.

#include <qstringbuilder.h>

List of all members.

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)

Member Typedef Documentation

Definition at line 196 of file qstringbuilder.h.


Member Enumeration Documentation

anonymous enum
Enumerator:
ExactSize 

Definition at line 197 of file qstringbuilder.h.

{ ExactSize = true };

Member Function Documentation

static int size ( const QLatin1Literal a ) [inline, static]

Definition at line 198 of file qstringbuilder.h.

{ return a.size(); }
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++);
    }

The documentation for this struct was generated from the following file: