| 1152 | } |
| 1153 | |
| 1154 | int CsoundFile::exportArrangementForPerformance(std::string filename) const |
| 1155 | { |
| 1156 | std::ofstream stream(filename.c_str(), std::ios::binary); |
| 1157 | exportArrangementForPerformance(stream); |
| 1158 | stream.close(); |
| 1159 | return stream.good(); |
| 1160 | } |
| 1161 | |
| 1162 | int CsoundFile::exportArrangementForPerformance(std::ostream &stream) const |
| 1163 | { |
nothing calls this directly
no test coverage detected