blob: f0a4095245211433ca544ee29a5db13b00452eb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#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
|