| 131 | } |
| 132 | |
| 133 | das_text_writer * das_text_make_writer() { |
| 134 | return (das_text_writer *) new TextWriter(); |
| 135 | } |
| 136 | |
| 137 | void das_text_release ( das_text_writer * output ) { |
| 138 | if ( output ) delete (TextWriter *) output; |
no outgoing calls
no test coverage detected