|
libqi-api
release-2.5.3-2016-11-18
|
#include <typeimpl.hxx>
Public Member Functions | |
| const TypeInfo & | info () override |
| Get the TypeInfo corresponding to this type. More... | |
| void * | initializeStorage (void *ptr) override |
| void * | ptrFromStorage (void **storage) override |
| void * | clone (void *storage) override |
| Allocate a storage and copy the value given as an argument. More... | |
| void | destroy (void *ptr) override |
| Free all resources of a storage. More... | |
| TypeKind | kind () override |
| bool | less (void *a, void *b) override |
Public Member Functions inherited from qi::TypeInterface | |
| const char * | infoString () |
| qi::Signature | signature (void *storage=0, bool resolveDynamic=false) |
Additional Inherited Members | |
Static Public Member Functions inherited from qi::TypeInterface | |
| static TypeInterface * | fromSignature (const qi::Signature &sig) |
Definition at line 307 of file typeimpl.hxx.
|
inlineoverridevirtual |
Allocate a storage and copy the value given as an argument.
Implements qi::TypeInterface.
Definition at line 319 of file typeimpl.hxx.
|
inlineoverridevirtual |
Free all resources of a storage.
Implements qi::TypeInterface.
Definition at line 320 of file typeimpl.hxx.
|
inlineoverridevirtual |
Get the TypeInfo corresponding to this type.
Implements qi::TypeInterface.
Definition at line 310 of file typeimpl.hxx.
|
inlineoverridevirtual |
Initialize and return a new storage, from nothing or a T*.
If ptr is not null, it should be used as a storage (the method can usually just return ptr in that case).
Implements qi::TypeInterface.
Definition at line 317 of file typeimpl.hxx.
|
inlineoverridevirtual |
Get the kind of the data.
This is used to downcast the TypeInterface object to a specialized interface.
Reimplemented from qi::TypeInterface.
Definition at line 321 of file typeimpl.hxx.
|
inlineoverridevirtual |
Return true if a is less than b
Less must always work: compare pointers if you have to.
Implements qi::TypeInterface.
Definition at line 322 of file typeimpl.hxx.
|
inlineoverridevirtual |
Get pointer to type from pointer to storage.
This allows for storing an integer value (for instance) directily into the pointer and avoid an allocation.
This method should be called on storage before casting it to a specific type.
Implements qi::TypeInterface.
Definition at line 318 of file typeimpl.hxx.