MuseScore/mscore/importmidi_clef.h

19 lines
339 B
C++

#ifndef IMPORTMIDI_CLEF_H
#define IMPORTMIDI_CLEF_H
namespace Ms {
class Staff;
enum class ClefType : signed char;
namespace MidiClef {
void createClefs(Staff *staff, int indexOfOperation, bool isDrumTrack);
ClefType clefTypeFromAveragePitch(int averagePitch);
} // namespace MidiClef
} // namespace Ms
#endif // IMPORTMIDI_CLEF_H