1 #ifndef IMPORTMIDI_CLEF_H 2 #define IMPORTMIDI_CLEF_H 3 4 5 namespace Ms { 6 7 class Staff; 8 class InstrumentTemplate; 9 enum class ClefType : signed char; 10 11 namespace MidiClef { 12 13 bool hasGFclefs(const InstrumentTemplate *templ); 14 void createClefs(Staff *staff, int indexOfOperation, bool isDrumTrack); 15 ClefType clefTypeFromAveragePitch(int averagePitch); 16 17 } // namespace MidiClef 18 } // namespace Ms 19 20 21 #endif // IMPORTMIDI_CLEF_H 22