repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-0.0.3
[lilypond.git]
/
symtable.hh
blob
f390e285e01b26da27d608e1c896f944631ab99a
1
struct
Symtable
:
public
Assoc
<
String
,
Symbol
> {
2
const
Symbol
*
lookup
(
String
)
const
;
3
};
4
5
6
struct
Symtables
:
private
Assoc
<
String
,
Symtable
*> {
7
String fname
;
8
bool
done_reading
;
9
Symtables
(
String s
) :
fname
(
s
) {
10
done_reading
=
false
;
11
}
12
void
read
() ;
13
Symtable
*
operator
()(
String s
);
14
15
};
16