| 92 | }; |
| 93 | |
| 94 | void mapscript_create_labelcache(labelCacheObj *labelcache, parent_object parent, zval *return_value TSRMLS_DC) |
| 95 | { |
| 96 | php_labelcache_object * php_labelcache; |
| 97 | object_init_ex(return_value, mapscript_ce_labelcache); |
| 98 | php_labelcache = (php_labelcache_object *)zend_object_store_get_object(return_value TSRMLS_CC); |
| 99 | php_labelcache->labelcache = labelcache; |
| 100 | |
| 101 | php_labelcache->parent = parent; |
| 102 | MAPSCRIPT_ADDREF(parent.val); |
| 103 | } |
| 104 | |
| 105 | static void mapscript_labelcache_object_destroy(void *object TSRMLS_DC) |
| 106 | { |
no outgoing calls
no test coverage detected