#include <ulxr_value.h>
Inheritance diagram for ulxr::Void:
Public Member Functions | |
Void () | |
Default constructor for a Void. | |
virtual | ~Void () |
Destroys the Value. | |
virtual ValueBase * | cloneValue () const |
Creates a copy of the actual object. | |
virtual CppString | getSignature (bool deep=false) const |
Returns the signature of value. | |
virtual std::string | getWbXml () const |
Returns the call as binary xml string. | |
virtual CppString | getXml (int indent=0) const |
Returns the value as xml string. | |
Static Public Member Functions | |
static CppString | getValueName () |
Returns the xml name of the Value. | |
Private Attributes | |
bool | val |
Definition at line 512 of file ulxr_value.h.
ulxr::Void::Void | ( | ) |
ulxr::Void::~Void | ( | ) | [virtual] |
ValueBase * ulxr::Void::cloneValue | ( | ) | const [virtual] |
Creates a copy of the actual object.
Implements ulxr::ValueBase.
Definition at line 564 of file ulxr_value.cpp.
References ulxr::RpcVoid, and ULXR_ASSERT_RPCTYPE.
CppString ulxr::Void::getSignature | ( | bool | deep = false |
) | const [virtual] |
Returns the signature of value.
The signature consists of its type name.
deep | if nested types exist, include them |
Implements ulxr::ValueBase.
Definition at line 571 of file ulxr_value.cpp.
References ulxr::RpcVoid, and ULXR_ASSERT_RPCTYPE.
CppString ulxr::Void::getValueName | ( | ) | [static] |
Returns the xml name of the Value.
Definition at line 578 of file ulxr_value.cpp.
References ULXR_PCHAR.
std::string ulxr::Void::getWbXml | ( | ) | const [virtual] |
Returns the call as binary xml string.
The method call is converted to a wbxml sequence. It is prepended with the necessary xml procession instruction with version and encoding set to UTF-8.
Implements ulxr::ValueBase.
Definition at line 584 of file ulxr_value.cpp.
References ulxr::RpcVoid, and ULXR_ASSERT_RPCTYPE.
CppString ulxr::Void::getXml | ( | int | indent = 0 |
) | const [virtual] |
Returns the value as xml string.
The content and its type name is converted to an xml text. The structure of the text is indented to facilitate easy reading of larger blocks.
indent | current indentation level |
Implements ulxr::ValueBase.
Definition at line 591 of file ulxr_value.cpp.
References ulxr::RpcVoid, ULXR_ASSERT_RPCTYPE, and ULXR_PCHAR.
bool ulxr::Void::val [private] |
Definition at line 561 of file ulxr_value.h.