summaryrefslogtreecommitdiff
path: root/src/drumkit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drumkit.h')
-rw-r--r--src/drumkit.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/drumkit.h b/src/drumkit.h
index d25b6b3..2ed558d 100644
--- a/src/drumkit.h
+++ b/src/drumkit.h
@@ -37,6 +37,7 @@ class DrumKitParser;
class DrumKit {
friend class DrumKitParser;
public:
+ DrumKit();
~DrumKit();
std::string name();
@@ -45,7 +46,13 @@ public:
Instruments instruments;
Channels channels;
+ void clear();
+
+ bool isValid();
+
private:
+ void *magic;
+
std::string _name;
std::string _description;
};