Qt 4.8
Public Types | Static Public Functions | List of all members
QConcatenable< QStringBuilder< A, B > > Struct Template Reference

#include <qstringbuilder.h>

Public Types

enum  { ExactSize = QConcatenable<A>::ExactSize && QConcatenable<B>::ExactSize }
 
typedef QtStringBuilder::ConvertToTypeHelper< typename QConcatenable< A >::ConvertTo, typename QConcatenable< B >::ConvertTo >::ConvertTo ConvertTo
 
typedef QStringBuilder< A, B > type
 

Static Public Functions

template<typename T >
static void appendTo (const type &p, T *&out)
 
static int size (const type &p)
 

Detailed Description

template<typename A, typename B>
struct QConcatenable< QStringBuilder< A, B > >

Definition at line 392 of file qstringbuilder.h.

Typedefs

◆ ConvertTo

template<typename A , typename B >
typedef QtStringBuilder::ConvertToTypeHelper<typename QConcatenable<A>::ConvertTo, typename QConcatenable<B>::ConvertTo>::ConvertTo QConcatenable< QStringBuilder< A, B > >::ConvertTo

Definition at line 395 of file qstringbuilder.h.

◆ type

template<typename A , typename B >
typedef QStringBuilder<A, B> QConcatenable< QStringBuilder< A, B > >::type

Definition at line 394 of file qstringbuilder.h.

Enumerations

◆ anonymous enum

template<typename A , typename B >
anonymous enum

Functions

◆ appendTo()

template<typename A , typename B >
template<typename T >
static void QConcatenable< QStringBuilder< A, B > >::appendTo ( const type p,
T *&  out 
)
inlinestatic

Definition at line 401 of file qstringbuilder.h.

402  {
403  QConcatenable<A>::appendTo(p.a, out);
404  QConcatenable<B>::appendTo(p.b, out);
405  }

◆ size()

template<typename A , typename B >
static int QConcatenable< QStringBuilder< A, B > >::size ( const type p)
inlinestatic

Definition at line 397 of file qstringbuilder.h.

398  {
400  }

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