summaryrefslogtreecommitdiff
path: root/src/nw4r/snd/snd_MmlSeqTrack.cpp
blob: 569a23024ba94d281ef3b5a5835df95f1b4dd862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "nw4r/snd/snd_MmlSeqTrack.h"

/* Original source:
 * kiwi515/ogws
 * src/nw4r/snd/snd_MmlSeqTrack.cpp
 */

/*******************************************************************************
 * headers
 */

#include "nw4r/snd/snd_MmlParser.h"

/*******************************************************************************
 * functions
 */

namespace nw4r { namespace snd { namespace detail {

MmlSeqTrack::MmlSeqTrack() {}

MmlSeqTrack::ParseResult MmlSeqTrack::Parse(bool doNoteOn)
{
	return mParser->Parse(this, doNoteOn);
}

}}} // namespace nw4r::snd::detail