score.h 330 B

12345678910111213141516171819
  1. #ifndef QTAUSCORE_H
  2. #define QTAUSCORE_H
  3. #include "PluginInterfaces.h"
  4. #include <QJsonArray>
  5. #include "tempomap.h"
  6. class QtauScore : public IScore
  7. {
  8. std::vector<synthNote> notes;
  9. public:
  10. QtauScore(const QJsonArray& ust,TempoMap* tmap);
  11. int getNoteCount();
  12. synthNote getNote(int index);
  13. };
  14. #endif // QTAUSCORE_H