mirror of
https://github.com/zeldaret/ss
synced 2026-08-12 11:52:22 -04:00
04d5527eba
Co-authored-by: muff1nOS <19197077+muff1n1634@users.noreply.github.com>
23 lines
487 B
C++
23 lines
487 B
C++
#ifndef NW4R_SND_MIDI_SEQ_TRACK_H
|
|
#define NW4R_SND_MIDI_SEQ_TRACK_H
|
|
|
|
/*******************************************************************************
|
|
* headers
|
|
*/
|
|
|
|
#include "SeqTrack.h"
|
|
|
|
/*******************************************************************************
|
|
* classes and functions
|
|
*/
|
|
|
|
namespace nw4r { namespace snd { namespace detail
|
|
{
|
|
class MidiSeqTrack : public SeqTrack
|
|
{
|
|
MidiSeqTrack();
|
|
};
|
|
}}} // namespace nw4r::snd::detail
|
|
|
|
#endif // NW4R_SND_MIDI_SEQ_TRACK_H
|