You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
263B

  1. namespace rack_plugin_rcm {
  2. namespace SongRoll {
  3. class SongRollData;
  4. class Transport {
  5. public:
  6. Transport(SongRollData* data);
  7. void reset();
  8. int currentSection = 0;
  9. private:
  10. SongRollData* data;
  11. };
  12. }
  13. } // namespace rack_plugin_rcm