summaryrefslogtreecommitdiff
path: root/src/identifier.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/identifier.cc')
-rw-r--r--src/identifier.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/identifier.cc b/src/identifier.cc
new file mode 100644
index 0000000000..024fe06486
--- /dev/null
+++ b/src/identifier.cc
@@ -0,0 +1,26 @@
+#include <assert.h>
+#include "identifier.hh"
+#include "staff.hh"
+#include "lexer.hh"
+
+
+Identifier::Identifier(String n)
+ :name (n)
+{
+ data = 0;
+}
+
+
+Identifier::~Identifier()
+{
+}
+
+Staff_id::~Staff_id()
+{
+ delete staff();
+}
+
+Voice_id::~Voice_id()
+{
+ delete voice();
+}