Qt 4.8
Public Types | Static Public Functions | List of all members
QConcatenable< QLatin1Char > Struct Template Reference

#include <qstringbuilder.h>

Public Types

enum  { ExactSize = true }
 
typedef QString ConvertTo
 
typedef QLatin1Char type
 

Static Public Functions

static void appendTo (const QLatin1Char c, QChar *&out)
 
static void appendTo (const QLatin1Char c, char *&out)
 
static int size (const QLatin1Char)
 

Detailed Description

template<>
struct QConcatenable< QLatin1Char >

Definition at line 192 of file qstringbuilder.h.

Typedefs

◆ ConvertTo

Definition at line 195 of file qstringbuilder.h.

◆ type

Definition at line 194 of file qstringbuilder.h.

Enumerations

◆ anonymous enum

anonymous enum
Enumerator
ExactSize 

Definition at line 196 of file qstringbuilder.h.

Functions

◆ appendTo() [1/2]

static void QConcatenable< QLatin1Char >::appendTo ( const QLatin1Char  c,
QChar *&  out 
)
inlinestatic

Definition at line 198 of file qstringbuilder.h.

199  { *out++ = c; }
unsigned char c[8]
Definition: qnumeric_p.h:62

◆ appendTo() [2/2]

static void QConcatenable< QLatin1Char >::appendTo ( const QLatin1Char  c,
char *&  out 
)
inlinestatic

Definition at line 200 of file qstringbuilder.h.

201  { *out++ = c.toLatin1(); }
char toLatin1() const
Converts a Latin-1 character to an 8-bit ASCII representation of the character.
Definition: qchar.h:63

◆ size()

static int QConcatenable< QLatin1Char >::size ( const QLatin1Char  )
inlinestatic

Definition at line 197 of file qstringbuilder.h.

197 { return 1; }

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