| 282 | } |
| 283 | |
| 284 | void das_context_release ( das_context * context ) { |
| 285 | if ( context ) delete (Context *) context; |
| 286 | } |
| 287 | |
| 288 | das_function * das_context_find_function ( das_context * context, char * name ) { |
| 289 | return (das_function *) ((Context *)context)->findFunction(name); |
no outgoing calls