Public Types | Static Public Member Functions

QConcatenable< QStringRef > Struct Template Reference

Search for all occurrences

Detailed Description

template<>
struct QConcatenable< QStringRef >

Definition at line 219 of file qstringbuilder.h.

#include <qstringbuilder.h>

List of all members.

Public Types

enum   { ExactSize = true }
typedef QStringRef  type

Static Public Member Functions

static int  size (const QStringRef &a)
static void  appendTo (QStringRef a, QChar *&out)

Member Typedef Documentation

typedef QStringRef type

Definition at line 221 of file qstringbuilder.h.


Member Enumeration Documentation

anonymous enum
Enumerator:
ExactSize 

Definition at line 222 of file qstringbuilder.h.

{ ExactSize = true };

Member Function Documentation

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

Definition at line 223 of file qstringbuilder.h.

{ return a.size(); }
static void appendTo ( QStringRef  a,
QChar *&  out 
) [inline, static]

Definition at line 224 of file qstringbuilder.h.

    {
        const int n = a.size();
        memcpy(out, reinterpret_cast<const char*>(a.constData()), sizeof(QChar) * n);
        out += n;
    }

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