diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-04-20 20:13:52 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2013-04-20 20:13:52 +0200 |
commit | c9200c25e02b2ab5c1fc4461a4621d109e798350 (patch) | |
tree | 6fca342d86d9e0839ae02bc66b3476f59a29eec7 /src/instrument.h | |
parent | 180d70312335d7274eff605e3ec4c1af5879daa4 (diff) |
New 'instrument group' feature added.
Diffstat (limited to 'src/instrument.h')
-rw-r--r-- | src/instrument.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/instrument.h b/src/instrument.h index b146cb2..a302412 100644 --- a/src/instrument.h +++ b/src/instrument.h @@ -45,6 +45,9 @@ public: std::string name(); std::string description(); + std::string group(); + + void setGroup(std::string group); // std::map<std::string, std::string> channelmap; @@ -55,6 +58,7 @@ public: private: void *magic; + std::string _group; std::string _name; std::string _description; RangeMap<level_t, Sample*> samples; |