Elm
2
ELM is a library providing generic data structures, OS-independent interface, plugins and XML.
|
Public Member Functions | |
FloatType (void) | |
virtual bool | isFloat (void) const |
virtual bool | canCast (const Type *t) const |
virtual bool | isSerial (void) const |
virtual const Serializable & | asSerial (void) const |
virtual const Type & | type (void) const |
virtual void * | instantiate (void) const |
virtual void | serialize (serial2::Serializer &ser, const void *data) const |
virtual void | unserialize (serial2::Unserializer &uns, void *data) const |
Public Member Functions inherited from Type | |
Type (string name="") | |
virtual | ~Type (void) |
string | name (void) const |
const PointerType & | pointer (void) const |
virtual bool | isVoid (void) const |
virtual bool | isBool (void) const |
virtual bool | isInt (void) const |
virtual bool | isPtr (void) const |
virtual const PointerType & | asPtr (void) const |
virtual bool | isClass (void) const |
virtual const AbstractClass & | asClass (void) const |
virtual bool | isEnum (void) const |
virtual const Enumerable & | asEnum (void) const |
virtual const TemplateType * | asTemplate (void) const |
virtual const InstanceType * | asInstance (void) const |
virtual const ParamType * | asParam (void) const |
void | initialize (void) |
bool | operator== (const Type &t) const |
bool | operator!= (const Type &t) const |
Public Member Functions inherited from Serializable | |
virtual | ~Serializable (void) |
Additional Inherited Members | |
Public Types inherited from Type | |
typedef HashMap< string, const Type * >::Iter | TypeIter |
Static Public Member Functions inherited from Type | |
static const Type * | get (string name) |
static TypeIter | types (void) |
Static Public Attributes inherited from Type | |
static const Type & | param0 |
static const Type & | param1 |
static const Type & | param2 |
static const Type & | param3 |
Type class for floating-point reals.
|
inlinevirtual |
Return the serializable instance of this type.
Reimplemented from Type.
Test if the type can be casted to the given type.
t | Type to cast to. |
Reimplemented from Type.
References Type::isBool(), Type::isFloat(), and Type::isInt().
Implements Serializable.
Test if the type is a floating-point real.
Reimplemented from Type.
|
inlinevirtual |
Serialize the data passed in parameter that must be of type corresponding to the interface.
ser | Serializer to use. |
data | Pointer to data to serialize. |
Implements Serializable.
References Serializer::onValue().
Get the type corresponding to this enumerable interface.
Implements Serializable.
|
inlinevirtual |
Unserialize the coming data from the unserializer to the place pointed by data. This place must be of the same type as the serializable type.
uns | Unserializer to get data from. |
data | Pointer to place to unserialize in. |
Implements Serializable.
References Unserializer::onValue().