| 77 | } |
| 78 | |
| 79 | char** getOutputFormatList() { |
| 80 | vector<string> oList = OutputFormat::availableFormats(); |
| 81 | return makeStrList(oList); |
| 82 | } |
| 83 | |
| 84 | void freeComponentList(char** strList) { |
| 85 | if (strList==NULL) return; |
nothing calls this directly
no test coverage detected