#include <it_bus/nillable.h>
Inheritance diagram for IT_Bus::Nillable:
Definition at line 19 of file nillable.h.
Public Member Functions | |
Nillable () | |
Constructor. | |
virtual | ~Nillable () |
Destructor. | |
virtual Boolean | is_nil () const=0 |
True if the element is nil. | |
virtual void | set_nil ()=0 |
Set the element to be nil. | |
virtual void | read (const QName &name, ComplexTypeReader &reader) throw ((IT_Bus::DeserializationException)) |
Read the value into the instance. | |
virtual void | write (const QName &name, ComplexTypeWriter &writer) const throw ((IT_Bus::SerializationException)) |
Write the content of the instance. | |
virtual AnyType::Kind | get_kind () const |
Returns the IT_Bus::AnyType::Kind for the type. | |
virtual void | write_value (const QName &name, ComplexTypeWriter &writer) const =0 throw ((SerializationException)) |
Write the non-nil value. | |
virtual void | read_value (const QName &name, ComplexTypeReader &reader)=0 throw ((DeserializationException)) |
Read a non-nil value. |
virtual void IT_Bus::Nillable::read | ( | const QName & | name, | |
ComplexTypeReader & | reader | |||
) | throw ((IT_Bus::DeserializationException)) [virtual] |
Read the value into the instance.
Derived subclasses implement this method.
Implements IT_Bus::AnyType.
virtual void IT_Bus::Nillable::write | ( | const QName & | name, | |
ComplexTypeWriter & | writer | |||
) | const throw ((IT_Bus::SerializationException)) [virtual] |
Write the content of the instance.
Derived subclasses implement this method.
Implements IT_Bus::AnyType.
virtual AnyType::Kind IT_Bus::Nillable::get_kind | ( | ) | const [virtual] |
Returns the IT_Bus::AnyType::Kind for the type.
Derived subclasses override this method and return the appropriate Kind.
Reimplemented from IT_Bus::AnyType.