| 68 | } |
| 69 | |
| 70 | char** getComponentList() { |
| 71 | const vector<const Component*>& pList = ComponentFactory::instance()->getPrototypeList(); |
| 72 | vector<string> res; |
| 73 | for (vector<const Component*>::const_iterator it=pList.begin(); |
| 74 | it!=pList.end(); it++) |
| 75 | res.push_back((*it)->getIdentifier()); |
| 76 | return makeStrList(res); |
| 77 | } |
| 78 | |
| 79 | char** getOutputFormatList() { |
| 80 | vector<string> oList = OutputFormat::availableFormats(); |
nothing calls this directly
no test coverage detected