#include <class.h>

Public Types | |
| typedef R(T::* | mfunc )() |
Public Member Functions | |
| void | invoke (byte *data, void *result) |
| Invoke method. | |
| dbAnyMethodTrampoline * | optimize () |
| Get optimize trampoline. | |
| dbMethodTrampoline (dbFieldDescriptor *fd, mfunc f) | |
Public Attributes | |
| mfunc | method |
| typedef R(T::* mfunc)() |
| dbMethodTrampoline | ( | dbFieldDescriptor * | fd, | |
| mfunc | f | |||
| ) | [inline] |
| void invoke | ( | byte * | data, | |
| void * | result | |||
| ) | [inline, virtual] |
Invoke method.
| data | pointer to the record insode database | |
| result | pointer to place result in |
Implements dbAnyMethodTrampoline.
| dbAnyMethodTrampoline * optimize | ( | ) | [inline, virtual] |
Get optimize trampoline.
Optimized trampoline can be used for records which format in the database is the same as in application. In this case there is no need to fetch record and pointer insode database can be used intead
Implements dbAnyMethodTrampoline.