summaryrefslogtreecommitdiff
path: root/identifier.cc
blob: 5405d5f71033d6ce3534b41e9c1c50bb7eea5917 (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"
#include "parser.hh"

Identifier::Identifier(String n)
    :name  (n)
{
    data = 0;
}


Identifier::~Identifier()
{    
}

Staff_id::~Staff_id()
{
    delete staff();
}

Voice_id::~Voice_id()
{
    delete voice();
}