| 1142 | } |
| 1143 | |
| 1144 | std::string CsoundFile::getOrchestraHeader() const |
| 1145 | { |
| 1146 | int instrIndex = findToken(orchestra, "instr", 0); |
| 1147 | if(instrIndex == (int) orchestra.npos) |
| 1148 | { |
| 1149 | return ""; |
| 1150 | } |
| 1151 | return orchestra.substr(0, instrIndex); |
| 1152 | } |
| 1153 | |
| 1154 | int CsoundFile::exportArrangementForPerformance(std::string filename) const |
| 1155 | { |
nothing calls this directly
no test coverage detected