summaryrefslogtreecommitdiff
path: root/src/drumkit.h
diff options
context:
space:
mode:
authorJonas Suhr Christensen <jsc@umbraculum.org>2015-03-14 14:50:22 +0100
committerJonas Suhr Christensen <jsc@umbraculum.org>2015-03-14 14:50:22 +0100
commit56ff045cd148c3b8b09f154d1b0fd7bfc95606ac (patch)
tree0055a6fe61ae018ea4448bb2217e5229de739e37 /src/drumkit.h
parent0936f0e39b1775c1a9df1f5dc3433ebe58b669ef (diff)
Branch up to date with metadata_v1 branch.
Diffstat (limited to 'src/drumkit.h')
-rw-r--r--src/drumkit.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/drumkit.h b/src/drumkit.h
index 04b2c56..c5015b9 100644
--- a/src/drumkit.h
+++ b/src/drumkit.h
@@ -34,6 +34,18 @@
#include "instrument.h"
#include "versionstr.h"
+struct MetaData {
+ std::string version;
+ std::string name;
+ std::string description;
+ std::string notes;
+ std::string author;
+ std::string email;
+ std::string website;
+ std::vector<std::pair< std::string, std::string> > channels; // name, microphone
+ std::vector<std::pair< std::string, std::string> > instruments; // name, microphone
+};
+
class DrumKitParser;
class DrumKit {
friend class DrumKitParser;