| 283 | bool booted; |
| 284 | |
| 285 | CppiaObject(CppiaModule *inModule) |
| 286 | { |
| 287 | cppia = inModule; |
| 288 | GCSetFinalizer( this, onRelease ); |
| 289 | } |
| 290 | static void onRelease(hx::Object *inObj) |
| 291 | { |
| 292 | delete ((CppiaObject *)inObj)->cppia; |
nothing calls this directly
no outgoing calls
no test coverage detected