| 893 | } |
| 894 | |
| 895 | std::string CsoundFile::getInstrumentBody(std::string name) const |
| 896 | { |
| 897 | std::string definition; |
| 898 | getInstrument(name, definition); |
| 899 | std::string pre; |
| 900 | std::string id; |
| 901 | std::string name_; |
| 902 | std::string post; |
| 903 | (void) parseInstrument(definition, pre, id, name_, post); |
| 904 | return definition; |
| 905 | } |
| 906 | |
| 907 | std::string CsoundFile::getInstrumentBody(int number) const |
| 908 | { |
nothing calls this directly
no test coverage detected