summaryrefslogtreecommitdiff
path: root/src/identifier.cc
blob: 024fe06486b30501bbd7cc9182d73e078a29ee28 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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();
}