summaryrefslogtreecommitdiff
path: root/src/instrument.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/instrument.cc')
-rw-r--r--src/instrument.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/instrument.cc b/src/instrument.cc
index 22b6a90..7232431 100644
--- a/src/instrument.cc
+++ b/src/instrument.cc
@@ -109,6 +109,16 @@ std::string Instrument::description()
return _description;
}
+std::string Instrument::group()
+{
+ return _group;
+}
+
+void Instrument::setGroup(std::string g)
+{
+ _group = g;
+}
+
#ifdef TEST_INSTRUMENT
//deps: channel.cc sample.cc audiofile.cc
//cflags: $(SNDFILE_CFLAGS)