The QtSoapSimpleType class provides a container for all simple SOAP types, such as strings, integers and booleans. More...
#include <QtSoapSimpleType>
Inherits: QtSoapType.
QtSoapSimpleType () | |
QtSoapSimpleType ( const QtSoapSimpleType & copy ) | |
QtSoapSimpleType ( const QtSoapQName & name ) | |
QtSoapSimpleType ( const QtSoapQName & name, int n ) | |
QtSoapSimpleType ( const QtSoapQName & name, bool n, int dummy ) | |
QtSoapSimpleType ( const QtSoapQName & name, const QString & n ) | |
~QtSoapSimpleType () | |
QtSoapSimpleType & | operator= ( const QtSoapSimpleType & copy ) |
virtual void | clear () |
virtual bool | isValid () const |
virtual bool | parse ( QDomNode node ) |
virtual bool | toBool () const |
virtual QDomElement | toDomElement ( QDomDocument doc ) const |
virtual int | toInt () const |
virtual QString | toString () const |
virtual QVariant | value () const |
The QtSoapSimpleType class provides a container for all simple SOAP types, such as strings, integers and booleans.
See also QtSoapType, QtSoapStruct, and QtSoapArray.
Constructs an empty QtSoapSimpleType.
Constructs a QtSoapSimpleType that is a copy of copy.
This is an overloaded function.
Constructs an empty QtSoapSimpleType, and sets its QName (qualified name) to name.
This is an overloaded function.
Constructs a QtSoapSimpleType of type Int. Sets its QName (qualified name) to name and its value to n.
This is an overloaded function.
Constructs a QtSoapSimpleType of type Boolean. Sets its QName (qualified name) to name and its value to n.
dummy is an unused variable that should be set to 0; it is needed for older compilers that cannot distinguish between bool and int.
This is an overloaded function.
Constructs a QtSoapSimpleType of type String. Sets its QName (qualified name) to name and its value to n.
Destructs the QtSoapSimpleType.
Reimplemented from QtSoapType::clear().
Erases the value of this QtSoapSimpleType.
Reimplemented from QtSoapType::isValid().
Reimplemented from QtSoapType::parse().
Inspects node and constructs the QtSoapSimpleType content if node qualifies as a SOAP simple type. Returns true if it does; otherwise returns false.
Reimplemented from QtSoapType::toBool().
Returns the value of the simple type as a bool.
Reimplemented from QtSoapType::toDomElement().
Returns the QDomElement representation of this QtSoapSimpleType. The returned QDomElement is created using doc.
Reimplemented from QtSoapType::toInt().
Returns the value of the simple type as an int.
Reimplemented from QtSoapType::toString().
Returns the value of the simple type as a QString.
Reimplemented from QtSoapType::value().
Returns the QVariant value of this QtSoapSimpleType.
Makes this QtSoapSimpleType a copy of copy.