casa
5.7.0-16
|
Subclass of QDomDocument that represents an XML scheme that is to be used with CASA's Qt dbus communication. More...
#include <QtDBusXML.h>
Public Member Functions | |
QtDBusXML () | |
Non-Static Methods //. More... | |
QtDBusXML (const QtDBusXML ©) | |
Copy constructor, see operator=(). More... | |
virtual | ~QtDBusXML () |
Destructor. More... | |
casacore::String | time () const |
Gets the value of the time tag, or an empty string if there is none. More... | |
QString | qtime () const |
void | setTime () |
Sets the time tag to the current time. More... | |
casacore::String | from () const |
Gets/Sets the from tag. More... | |
QString | qfrom () const |
void | setFrom (const casacore::String &value) |
void | setFrom (const QString &value) |
casacore::String | to () const |
Gets/Sets the to tag. More... | |
QString | qto () const |
void | setTo (const casacore::String &value) |
void | setTo (const QString &value) |
casacore::String | methodName () const |
Gets/Sets the method name and whether the method call is asynchronous or not (default is false). More... | |
QString | qmethodName () const |
bool | methodIsAsync () const |
void | setMethodName (const casacore::String &value, bool isAsync=false) |
void | setMethodName (const QString &value, bool isAsync=false) |
void | setMethodIsAsync (bool value) |
casacore::String | methodParamType (const casacore::String ¶mName) const |
Returns the type of the method parameter with the given name, or an empty string if there is none. More... | |
QString | qmethodParamType (const QString ¶mName) const |
bool | methodParamIsBool (const casacore::String ¶mName) const |
Returns whether the method parameter with the given name is the specified type or not. More... | |
bool | methodParamIsInt (const casacore::String ¶mName) const |
bool | methodParamIsUInt (const casacore::String ¶mName) const |
bool | methodParamIsDouble (const casacore::String ¶mName) const |
bool | methodParamIsString (const casacore::String ¶mName) const |
bool | methodParamIsRecord (const casacore::String ¶mName) const |
bool | methodParamIsArrayBool (const casacore::String ¶mName) const |
bool | methodParamIsArrayInt (const casacore::String ¶mName) const |
bool | methodParamBool (const casacore::String ¶mName) const |
Returns the value of the method parameter with the given name as the specified type. More... | |
bool | methodParamBool (const QString ¶mName) const |
int | methodParamInt (const casacore::String ¶mName) const |
int | methodParamInt (const QString ¶mName) const |
casacore::uInt | methodParamUInt (const casacore::String ¶mName) const |
casacore::uInt | methodParamUInt (const QString ¶mName) const |
double | methodParamDouble (const casacore::String ¶mName) const |
double | methodParamDouble (const QString ¶mName) const |
casacore::String | methodParamString (const casacore::String ¶mName) const |
QString | methodParamQString (const QString ¶mName) const |
casacore::Record | methodParamRecord (const casacore::String ¶mName) const |
casacore::Record | methodParamRecord (const QString ¶mName) const |
casacore::Array< casacore::Bool > | methodParamArrayBool (const casacore::String ¶mName) const |
casacore::Array< casacore::Bool > | methodParamArrayBool (const QString ¶mName) const |
casacore::Array< casacore::Int > | methodParamArrayInt (const casacore::String ¶mName) const |
casacore::Array< casacore::Int > | methodParamArrayInt (const QString ¶mName) const |
void | setMethodParam (const casacore::String ¶mName, bool value) |
Sets the parameter with the given name to the given value (and associated type). More... | |
void | setMethodParam (const QString ¶mName, bool value) |
void | setMethodParam (const casacore::String ¶mName, int value) |
void | setMethodParam (const QString ¶mName, int value) |
void | setMethodParam (const casacore::String ¶mName, casacore::uInt value) |
void | setMethodParam (const QString ¶mName, casacore::uInt value) |
void | setMethodParam (const casacore::String ¶mName, double value) |
void | setMethodParam (const QString ¶mName, double value) |
void | setMethodParam (const casacore::String ¶mName, const casacore::String &value) |
void | setMethodParam (const QString ¶mName, const QString &value) |
void | setMethodParam (const casacore::String ¶mName, const casacore::Record &value) |
void | setMethodParam (const QString ¶mName, const casacore::Record &value) |
void | setMethodParam (const casacore::String ¶mName, const casacore::Array< bool > &value) |
void | setMethodParam (const QString ¶mName, const casacore::Array< bool > &value) |
void | setMethodParam (const casacore::String ¶mName, const casacore::Array< int > &value) |
void | setMethodParam (const QString ¶mName, const casacore::Array< int > &value) |
casacore::Record | methodParams () const |
Gets/Sets all method parameter values as a Record. More... | |
void | setMethodParams (const casacore::Record ¶meters) |
bool | returnedSet () const |
Returns whether or not a returned value was set. More... | |
casacore::String | returnedType () const |
Returns the type of the returned value, or empty string for none. More... | |
QString | qreturnedType () const |
bool | returnedIsBool () const |
Returns whether the returned value is the specified type or not. More... | |
bool | returnedIsInt () const |
bool | returnedIsUInt () const |
bool | returnedIsDouble () const |
bool | returnedIsString () const |
bool | returnedIsRecord () const |
bool | returnedIsArrayBool () const |
bool | returnedIsArrayInt () const |
bool | returnedBool () const |
Returns the returned value as the specified type. More... | |
int | returnedInt () const |
casacore::uInt | returnedUInt () const |
double | returnedDouble () const |
casacore::String | returnedString () const |
QString | returnedQString () const |
casacore::Record | returnedRecord () const |
casacore::Array< bool > | returnedArrayBool () const |
casacore::Array< int > | returnedArrayInt () const |
void | setReturnedValue (bool value) |
Sets the returned value to the given value (and associated type). More... | |
void | setReturnedValue (int value) |
void | setReturnedValue (casacore::uInt value) |
void | setReturnedValue (double value) |
void | setReturnedValue (const casacore::String &value) |
void | setReturnedValue (const QString &value) |
void | setReturnedValue (const casacore::Record &value) |
void | setReturnedValue (const casacore::Array< casacore::Bool > &value) |
void | setReturnedValue (const casacore::Array< casacore::Int > &value) |
casacore::Record | returnedValue () const |
Gets/Sets the returned value as a record. More... | |
void | setReturnedValueRec (const casacore::Record &retValue) |
casacore::String | toXMLString () const |
Returns the whole XML as a string. More... | |
QString | toXMLQString () const |
bool | fromXMLString (const casacore::String &value) |
Sets the whole XML as a string, and returns whether the operation. More... | |
bool | fromXMLString (const QString &value) |
QDomDocument & | domDocument () |
Returns the underlying QDomDocument. More... | |
const QDomDocument & | domDocument () const |
QtDBusXML & | operator= (const QtDBusXML ©) |
Copy operator. More... | |
Static Public Member Functions | |
static QtDBusXML | constructXML (const casacore::String &from="", const casacore::String &to="", const casacore::String &methodName="", bool methodIsAsync=false, const casacore::Record &methodParams=casacore::Record(), const casacore::Record &retValue=casacore::Record()) |
Static Methods //. More... | |
static QtDBusXML | constructXML (const QString &from="", const QString &to="", const QString &methodName="", bool methodIsAsync=false, const casacore::Record &methodParams=casacore::Record(), const casacore::Record &retValue=casacore::Record()) |
static QtDBusXML | fromString (const casacore::String &xmlStr) |
Constructs and returns an XML message from the given XML string. More... | |
static QtDBusXML | fromString (const QString &xmlStr) |
static void | extractXML (const QtDBusXML &xml, casacore::String *time=NULL, casacore::String *from=NULL, casacore::String *to=NULL, casacore::String *methodName=NULL, casacore::Record *methodParams=NULL, casacore::Record *retValue=NULL) |
Reads the values from the given XML message into the given parameters which are not NULL. More... | |
static void | extractXML (const QtDBusXML &xml, QString *time=NULL, QString *from=NULL, QString *to=NULL, QString *methodName=NULL, casacore::Record *methodParams=NULL, casacore::Record *retValue=NULL) |
Private Member Functions | |
void | initialize () |
Initialize object; meant to be called from constructor. More... | |
QString | elemChildText (const QString &name) const |
Helper method for elemChildText(). More... | |
void | setElemChildText (const QString &name, const QString &value) |
Helper method for setElemChildText(). More... | |
QDomElement | methodParam (const QString ¶mName, bool createIfAbsent=false) const |
Helper method that returns the element for the method parameter with the given name, or a null element if it is not. More... | |
void | setMethodParam (const QString &name, const QString &type, const QString &value) |
Helper method for setting the method parameter values. More... | |
void | setReturnedValue (const QString &type, const QString &value) |
Helper method for setting the returned value. More... | |
Static Private Member Functions | |
static bool | qstringToBool (const QString &value) |
Static //. More... | |
static QString | qstringFromBool (bool value) |
static QDomElement | elemChild (QDomDocument doc, const QString &name, bool createIfAbsent=false) |
Returns the child of the given element with the given tag name. More... | |
static QDomElement | elemChild (QDomElement elem, const QString &name, bool createIfAbsent=false) |
static QString | elemChildText (QDomDocument doc, const QString &name, bool createIfAbsent=false) |
Returns the text value of the child of the given element with the given tag name. More... | |
static QString | elemChildText (QDomElement elem, const QString &name, bool createIfAbsent=false) |
static void | setElemChildText (QDomDocument doc, const QString &name, const QString &value, bool createIfAbsent=false) |
Sets the text value of the child of the given element with the given tag name to the given value. More... | |
static void | setElemChildText (QDomElement elem, const QString &name, const QString &value, bool createIfAbsent=false) |
static void | setElemText (QDomElement elem, const QString &text) |
Sets the text value of the given element (if it is not null) to the given text. More... | |
static casacore::Record | elemToRecord (QDomElement value) |
Converts between a QDomElement and casacore::Record for values. More... | |
static void | elemToRecord (casacore::Record &rec, QDomElement value) |
static void | elemFromRecord (QDomElement elem, const casacore::Record &value) |
static casacore::Array < casacore::Bool > | elemToArrayBool (QDomElement value) |
Converts between a QDomElement and casacore::Bool casacore::Array for values. More... | |
static void | elemFromArrayBool (QDomElement elem, const casacore::Array< casacore::Bool > &value) |
static casacore::Array < casacore::Int > | elemToArrayInt (QDomElement value) |
Converts between a QDomElement and casacore::Int casacore::Array for values. More... | |
static void | elemFromArrayInt (QDomElement elem, const casacore::Array< casacore::Int > &value) |
Private Attributes | |
QDomDocument | itsXML_ |
XML document. More... | |
Subclass of QDomDocument that represents an XML scheme that is to be used with CASA's Qt dbus communication.
<casa-dbus> <time>[TIMESTAMP]</time> <from>[NAME]</from> <to>[NAME]</to> <method name="[METHOD]" async="[ISASYNC]">
[NAME] | [VALUE] |
... </method> <returned type="[TYPE]">[VALUE]</returned> </casa-dbus> Currently supported types for parameters and returned values: bool, int, casacore::uInt, double, casacore::String, casacore::Record, casacore::Array<casacore::Bool> and casacore::Array<casacore::Int>, and Records with these types. For a discussion of what these fields mean, see the documentation for QtDBusXmlApp.
Definition at line 55 of file QtDBusXML.h.
casa::QtDBusXML::QtDBusXML | ( | ) |
Non-Static Methods //.
Constructor.
casa::QtDBusXML::QtDBusXML | ( | const QtDBusXML & | copy | ) |
Copy constructor, see operator=().
|
virtual |
Destructor.
|
inlinestatic |
Static Methods //.
Constructs and returns an XML message using the given parameters. Only uses the non-empty values. Sets the time to the current.
Definition at line 62 of file QtDBusXML.h.
References casacore::String::c_str(), from(), methodIsAsync(), methodName(), methodParams(), and to().
|
static |
QDomDocument& casa::QtDBusXML::domDocument | ( | ) |
Returns the underlying QDomDocument.
const QDomDocument& casa::QtDBusXML::domDocument | ( | ) | const |
|
inlinestaticprivate |
Returns the child of the given element with the given tag name.
If createIfAbsent is true, then the element will be created and appended if it is not present; otherwise, the returned element will be null if not present. If the given element is null, a null element is returned.
Definition at line 365 of file QtDBusXML.h.
References casa::name().
Referenced by elemChildText(), and setElemChildText().
|
staticprivate |
|
inlineprivate |
Helper method for elemChildText().
Definition at line 332 of file QtDBusXML.h.
References itsXML_.
Referenced by elemChildText().
|
inlinestaticprivate |
Returns the text value of the child of the given element with the given tag name.
See elemChild().
Definition at line 375 of file QtDBusXML.h.
References elemChildText(), and casa::name().
|
inlinestaticprivate |
Definition at line 378 of file QtDBusXML.h.
References elemChild().
|
staticprivate |
|
staticprivate |
|
staticprivate |
|
staticprivate |
Converts between a QDomElement and casacore::Bool casacore::Array for values.
|
staticprivate |
Converts between a QDomElement and casacore::Int casacore::Array for values.
|
staticprivate |
Converts between a QDomElement and casacore::Record for values.
|
staticprivate |
|
inlinestatic |
Reads the values from the given XML message into the given parameters which are not NULL.
Definition at line 85 of file QtDBusXML.h.
References from(), methodName(), methodParams(), qfrom(), qmethodName(), qtime(), qto(), time(), and to().
|
static |
|
inline |
Gets/Sets the from tag.
Definition at line 129 of file QtDBusXML.h.
References qfrom().
Referenced by constructXML(), and extractXML().
|
inlinestatic |
Constructs and returns an XML message from the given XML string.
Definition at line 77 of file QtDBusXML.h.
References casacore::String::c_str().
|
static |
|
inline |
Sets the whole XML as a string, and returns whether the operation.
succeeded or not.
Definition at line 308 of file QtDBusXML.h.
References casacore::String::c_str().
bool casa::QtDBusXML::fromXMLString | ( | const QString & | value | ) |
|
private |
Initialize object; meant to be called from constructor.
bool casa::QtDBusXML::methodIsAsync | ( | ) | const |
Referenced by constructXML().
|
inline |
Gets/Sets the method name and whether the method call is asynchronous or not (default is false).
Definition at line 146 of file QtDBusXML.h.
References qmethodName().
Referenced by constructXML(), and extractXML().
|
private |
Helper method that returns the element for the method parameter with the given name, or a null element if it is not.
See elemChild().
|
inline |
Definition at line 199 of file QtDBusXML.h.
References casacore::String::c_str().
casacore::Array<casacore::Bool> casa::QtDBusXML::methodParamArrayBool | ( | const QString & | paramName | ) | const |
|
inline |
Definition at line 202 of file QtDBusXML.h.
References casacore::String::c_str().
casacore::Array<casacore::Int> casa::QtDBusXML::methodParamArrayInt | ( | const QString & | paramName | ) | const |
|
inline |
Returns the value of the method parameter with the given name as the specified type.
Is invalid if that parameter is not of the requested type. Note: the value can always be returned as a string representation.
Definition at line 181 of file QtDBusXML.h.
References casacore::String::c_str().
bool casa::QtDBusXML::methodParamBool | ( | const QString & | paramName | ) | const |
|
inline |
Definition at line 190 of file QtDBusXML.h.
References casacore::String::c_str().
double casa::QtDBusXML::methodParamDouble | ( | const QString & | paramName | ) | const |
|
inline |
Definition at line 184 of file QtDBusXML.h.
References casacore::String::c_str().
int casa::QtDBusXML::methodParamInt | ( | const QString & | paramName | ) | const |
bool casa::QtDBusXML::methodParamIsArrayBool | ( | const casacore::String & | paramName | ) | const |
bool casa::QtDBusXML::methodParamIsArrayInt | ( | const casacore::String & | paramName | ) | const |
bool casa::QtDBusXML::methodParamIsBool | ( | const casacore::String & | paramName | ) | const |
Returns whether the method parameter with the given name is the specified type or not.
bool casa::QtDBusXML::methodParamIsDouble | ( | const casacore::String & | paramName | ) | const |
bool casa::QtDBusXML::methodParamIsInt | ( | const casacore::String & | paramName | ) | const |
bool casa::QtDBusXML::methodParamIsRecord | ( | const casacore::String & | paramName | ) | const |
bool casa::QtDBusXML::methodParamIsString | ( | const casacore::String & | paramName | ) | const |
bool casa::QtDBusXML::methodParamIsUInt | ( | const casacore::String & | paramName | ) | const |
QString casa::QtDBusXML::methodParamQString | ( | const QString & | paramName | ) | const |
Referenced by methodParamString().
|
inline |
Definition at line 196 of file QtDBusXML.h.
References casacore::String::c_str().
casacore::Record casa::QtDBusXML::methodParamRecord | ( | const QString & | paramName | ) | const |
casacore::Record casa::QtDBusXML::methodParams | ( | ) | const |
Gets/Sets all method parameter values as a Record.
Referenced by constructXML(), and extractXML().
|
inline |
Definition at line 193 of file QtDBusXML.h.
References casacore::String::c_str(), and methodParamQString().
|
inline |
Returns the type of the method parameter with the given name, or an empty string if there is none.
Definition at line 158 of file QtDBusXML.h.
References casacore::String::c_str(), and qmethodParamType().
|
inline |
Definition at line 187 of file QtDBusXML.h.
References casacore::String::c_str().
casacore::uInt casa::QtDBusXML::methodParamUInt | ( | const QString & | paramName | ) | const |
QString casa::QtDBusXML::qfrom | ( | ) | const |
Referenced by extractXML(), and from().
QString casa::QtDBusXML::qmethodName | ( | ) | const |
Referenced by extractXML(), and methodName().
QString casa::QtDBusXML::qmethodParamType | ( | const QString & | paramName | ) | const |
Referenced by methodParamType().
QString casa::QtDBusXML::qreturnedType | ( | ) | const |
Referenced by returnedSet(), and returnedType().
|
staticprivate |
|
staticprivate |
Static //.
Converts between QStrings and bools.
QString casa::QtDBusXML::qtime | ( | ) | const |
Referenced by extractXML(), and time().
QString casa::QtDBusXML::qto | ( | ) | const |
Referenced by extractXML(), and to().
casacore::Array<bool> casa::QtDBusXML::returnedArrayBool | ( | ) | const |
casacore::Array<int> casa::QtDBusXML::returnedArrayInt | ( | ) | const |
bool casa::QtDBusXML::returnedBool | ( | ) | const |
Returns the returned value as the specified type.
Is invalid if that parameter is not of the requested type. Note: the value can always be returned as a string representation.
double casa::QtDBusXML::returnedDouble | ( | ) | const |
int casa::QtDBusXML::returnedInt | ( | ) | const |
bool casa::QtDBusXML::returnedIsArrayBool | ( | ) | const |
bool casa::QtDBusXML::returnedIsArrayInt | ( | ) | const |
bool casa::QtDBusXML::returnedIsBool | ( | ) | const |
Returns whether the returned value is the specified type or not.
bool casa::QtDBusXML::returnedIsDouble | ( | ) | const |
bool casa::QtDBusXML::returnedIsInt | ( | ) | const |
bool casa::QtDBusXML::returnedIsRecord | ( | ) | const |
bool casa::QtDBusXML::returnedIsString | ( | ) | const |
bool casa::QtDBusXML::returnedIsUInt | ( | ) | const |
QString casa::QtDBusXML::returnedQString | ( | ) | const |
Referenced by returnedString().
casacore::Record casa::QtDBusXML::returnedRecord | ( | ) | const |
|
inline |
Returns whether or not a returned value was set.
Definition at line 243 of file QtDBusXML.h.
References qreturnedType().
|
inline |
Definition at line 271 of file QtDBusXML.h.
References returnedQString().
|
inline |
Returns the type of the returned value, or empty string for none.
Definition at line 247 of file QtDBusXML.h.
References qreturnedType().
casacore::uInt casa::QtDBusXML::returnedUInt | ( | ) | const |
casacore::Record casa::QtDBusXML::returnedValue | ( | ) | const |
Gets/Sets the returned value as a record.
ONLY the first field is used.
|
inlineprivate |
Helper method for setElemChildText().
Definition at line 336 of file QtDBusXML.h.
References itsXML_.
Referenced by setElemChildText().
|
inlinestaticprivate |
Sets the text value of the child of the given element with the given tag name to the given value.
See elemChild().
Definition at line 387 of file QtDBusXML.h.
References casa::name(), setElemChildText(), and casacore::value().
|
inlinestaticprivate |
Definition at line 390 of file QtDBusXML.h.
References elemChild(), and setElemText().
|
staticprivate |
Sets the text value of the given element (if it is not null) to the given text.
Referenced by setElemChildText().
|
inline |
Definition at line 131 of file QtDBusXML.h.
References casacore::String::c_str(), and setFrom().
Referenced by setFrom().
void casa::QtDBusXML::setFrom | ( | const QString & | value | ) |
void casa::QtDBusXML::setMethodIsAsync | ( | bool | value | ) |
|
inline |
Definition at line 149 of file QtDBusXML.h.
References casacore::String::c_str().
void casa::QtDBusXML::setMethodName | ( | const QString & | value, |
bool | isAsync = false |
||
) |
|
inline |
Sets the parameter with the given name to the given value (and associated type).
Definition at line 210 of file QtDBusXML.h.
References casacore::String::c_str().
Referenced by setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
bool | value | ||
) |
|
inline |
Definition at line 213 of file QtDBusXML.h.
References casacore::String::c_str(), and setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
int | value | ||
) |
|
inline |
Definition at line 216 of file QtDBusXML.h.
References casacore::String::c_str(), and setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
casacore::uInt | value | ||
) |
|
inline |
Definition at line 219 of file QtDBusXML.h.
References casacore::String::c_str(), and setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
double | value | ||
) |
|
inline |
Definition at line 222 of file QtDBusXML.h.
References casacore::String::c_str(), and setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
const QString & | value | ||
) |
|
inline |
Definition at line 225 of file QtDBusXML.h.
References casacore::String::c_str(), and setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
const casacore::Record & | value | ||
) |
|
inline |
Definition at line 228 of file QtDBusXML.h.
References casacore::String::c_str(), and setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
const casacore::Array< bool > & | value | ||
) |
|
inline |
Definition at line 231 of file QtDBusXML.h.
References casacore::String::c_str(), and setMethodParam().
void casa::QtDBusXML::setMethodParam | ( | const QString & | paramName, |
const casacore::Array< int > & | value | ||
) |
|
private |
Helper method for setting the method parameter values.
void casa::QtDBusXML::setMethodParams | ( | const casacore::Record & | parameters | ) |
void casa::QtDBusXML::setReturnedValue | ( | bool | value | ) |
Sets the returned value to the given value (and associated type).
Referenced by setReturnedValue().
void casa::QtDBusXML::setReturnedValue | ( | int | value | ) |
void casa::QtDBusXML::setReturnedValue | ( | casacore::uInt | value | ) |
void casa::QtDBusXML::setReturnedValue | ( | double | value | ) |
|
inline |
Definition at line 284 of file QtDBusXML.h.
References casacore::String::c_str(), and setReturnedValue().
void casa::QtDBusXML::setReturnedValue | ( | const QString & | value | ) |
void casa::QtDBusXML::setReturnedValue | ( | const casacore::Record & | value | ) |
void casa::QtDBusXML::setReturnedValue | ( | const casacore::Array< casacore::Bool > & | value | ) |
void casa::QtDBusXML::setReturnedValue | ( | const casacore::Array< casacore::Int > & | value | ) |
|
private |
Helper method for setting the returned value.
void casa::QtDBusXML::setReturnedValueRec | ( | const casacore::Record & | retValue | ) |
void casa::QtDBusXML::setTime | ( | ) |
Sets the time tag to the current time.
|
inline |
Definition at line 139 of file QtDBusXML.h.
References casacore::String::c_str(), and setTo().
Referenced by setTo().
void casa::QtDBusXML::setTo | ( | const QString & | value | ) |
|
inline |
Gets the value of the time tag, or an empty string if there is none.
Definition at line 120 of file QtDBusXML.h.
References qtime().
Referenced by extractXML().
|
inline |
Gets/Sets the to tag.
Definition at line 137 of file QtDBusXML.h.
References qto().
Referenced by constructXML(), and extractXML().
QString casa::QtDBusXML::toXMLQString | ( | ) | const |
Referenced by toXMLString().
|
inline |
Returns the whole XML as a string.
Definition at line 301 of file QtDBusXML.h.
References toXMLQString().
|
private |
XML document.
Definition at line 325 of file QtDBusXML.h.
Referenced by elemChildText(), and setElemChildText().