| 878 | //============================================================= |
| 879 | template <class T> |
| 880 | bool AudioFile<T>::save (const std::string& filePath, AudioFileFormat format) |
| 881 | { |
| 882 | std::vector<uint8_t> fileData; |
| 883 | return saveToMemory (fileData, format) && writeDataToFile (fileData, filePath); |
| 884 | } |
| 885 | |
| 886 | //============================================================= |
| 887 | template <class T> |
no outgoing calls