Functions | |
| mirkl_error_t * | mir_floatc_instance_create (mirkl_object_t **obj, double value, mirkl_uint32_t flags, mir_prsdata_t *pp, apr_pool_t *pool, apr_pool_t *tmp_pool) |
| mirkl_error_t * | mir_floatc_set_data (mirkl_object_t *obj, double val) |
| mirkl_error_t * | mir_floatc_get_data (mirkl_object_t *obj, double *val) |
Variables | |
| mirkl_object_t * | MirFloatClass |
| Float class. | |
| mirkl_error_t * mir_floatc_get_data | ( | mirkl_object_t * | obj, |
| double * | val | ||
| ) |
Getting value from Float object.
| obj | Reference to the object. | |
| [out] | val | Reference to the value. |
| mirkl_error_t * mir_floatc_instance_create | ( | mirkl_object_t ** | obj, |
| double | value, | ||
| mirkl_uint32_t | flags, | ||
| mir_prsdata_t * | pp, | ||
| apr_pool_t * | pool, | ||
| apr_pool_t * | tmp_pool | ||
| ) |
Creation of Float object.
| [out] | obj | Reference to the created object. |
| value | Value for initialization. | |
| flags | Flags of the object. | |
| pp | Reference to the parser data structure. | |
| pool | The pool to use for allocations of object structures. Should be valid as long as the created object lives. | |
| tmp_pool | The pool for temporary allocations. Can be deleted after calling this function. |
| mirkl_error_t * mir_floatc_set_data | ( | mirkl_object_t * | obj, |
| double | val | ||
| ) |
Setting value for Float object.
| obj | Reference to the object. |
| val | Value for to set. |