flower-1.0.2
[lilypond.git] / identifier.cc
blob9eab42e114e57aef4e0901e5c13f4260955f7378
1 #include <assert.h>
2 #include "keyword.hh"
3 #include "lexer.hh"
4 #include "parser.hh"
6 Identifier::Identifier()
8 data = 0;
9 type = IDENTIFIER;
13 Identifier::~Identifier()
15 if (!data)
16 return;
17 switch (type) {
18 case IDENTIFIER:
19 default:
20 assert(false);