| 12 | #include "TimeQuantizeOptions.h" |
| 13 | |
| 14 | class MidiFileWriter |
| 15 | { |
| 16 | public: |
| 17 | bool writeMidiFile(const std::vector<Notes::Event>& inNoteEvents, |
| 18 | const File& fileToUse, |
| 19 | const TimeQuantizeOptions::TimeQuantizeInfo& inInfo, |
| 20 | double inExportBpm, |
| 21 | PitchBendModes inPitchBendMode) const; |
| 22 | |
| 23 | private: |
| 24 | static double _BPMToMicrosecondsPerQuarterNote(double inTempoBPM); |
| 25 | |
| 26 | const int mTicksPerQuarterNote = 960; |
| 27 | }; |
| 28 | |
| 29 | #endif // MidiFileWriter_h |
nothing calls this directly
no outgoing calls
no test coverage detected