blob: 21d045ba23dbd19aed556a176d462af2cf06c354 (
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
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma once
#include <string>
#include <functional>
#include "DGDOM.h"
#include "logger.h"
bool probeDrumkitFile(const std::string& filename, LogFunction logger = nullptr);
bool probeInstrumentFile(const std::string& filename, LogFunction logger = nullptr);
bool parseDrumkitFile(const std::string& filename, DrumkitDOM& dom, LogFunction logger = nullptr);
bool parseInstrumentFile(const std::string& filename, InstrumentDOM& dom, LogFunction logger = nullptr);
|