Qt 4.8
Public Functions | Properties | Friends | List of all members
QDeclarativeCustomParserProperty Class Reference

#include <qdeclarativecustomparser_p.h>

Public Functions

QList< QVariantassignedValues () const
 
bool isList () const
 
QDeclarativeParser::Location location () const
 
QByteArray name () const
 
QDeclarativeCustomParserPropertyoperator= (const QDeclarativeCustomParserProperty &)
 
 QDeclarativeCustomParserProperty ()
 
 QDeclarativeCustomParserProperty (const QDeclarativeCustomParserProperty &)
 
 ~QDeclarativeCustomParserProperty ()
 

Properties

QDeclarativeCustomParserPropertyPrivated
 

Friends

class QDeclarativeCustomParserNodePrivate
 
class QDeclarativeCustomParserPropertyPrivate
 

Detailed Description

Definition at line 73 of file qdeclarativecustomparser_p.h.

Constructors and Destructors

◆ QDeclarativeCustomParserProperty() [1/2]

QDeclarativeCustomParserProperty::QDeclarativeCustomParserProperty ( )

◆ QDeclarativeCustomParserProperty() [2/2]

QDeclarativeCustomParserProperty::QDeclarativeCustomParserProperty ( const QDeclarativeCustomParserProperty other)

Definition at line 197 of file qdeclarativecustomparser.cpp.

◆ ~QDeclarativeCustomParserProperty()

QDeclarativeCustomParserProperty::~QDeclarativeCustomParserProperty ( )

Definition at line 212 of file qdeclarativecustomparser.cpp.

213 {
214  delete d; d = 0;
215 }
QDeclarativeCustomParserPropertyPrivate * d

Functions

◆ assignedValues()

QList< QVariant > QDeclarativeCustomParserProperty::assignedValues ( ) const

◆ isList()

bool QDeclarativeCustomParserProperty::isList ( ) const

Definition at line 222 of file qdeclarativecustomparser.cpp.

223 {
224  return d->isList;
225 }
QDeclarativeCustomParserPropertyPrivate * d

◆ location()

QDeclarativeParser::Location QDeclarativeCustomParserProperty::location ( ) const

Definition at line 227 of file qdeclarativecustomparser.cpp.

Referenced by QDeclarativeCustomParser::error().

228 {
229  return d->location;
230 }
QDeclarativeCustomParserPropertyPrivate * d

◆ name()

QByteArray QDeclarativeCustomParserProperty::name ( ) const

◆ operator=()

QDeclarativeCustomParserProperty & QDeclarativeCustomParserProperty::operator= ( const QDeclarativeCustomParserProperty other)

Definition at line 203 of file qdeclarativecustomparser.cpp.

204 {
205  d->name = other.d->name;
206  d->isList = other.d->isList;
207  d->values = other.d->values;
208  d->location = other.d->location;
209  return *this;
210 }
QDeclarativeCustomParserPropertyPrivate * d

Friends and Related Functions

◆ QDeclarativeCustomParserNodePrivate

Definition at line 90 of file qdeclarativecustomparser_p.h.

◆ QDeclarativeCustomParserPropertyPrivate

Definition at line 91 of file qdeclarativecustomparser_p.h.

Properties

◆ d

QDeclarativeCustomParserPropertyPrivate* QDeclarativeCustomParserProperty::d
private

The documentation for this class was generated from the following files: