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-1.3.145
[lilypond.git]
/
hdr
/
input-file.hh
blob
a01ea7507620c3db8ae9d70f390b6eb4d31f704b
1
/*
2
input-file.hh -- declare Input_file
3
4
source file of the LilyPond music typesetter
5
6
(c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7
*/
8
9
#ifndef INPUT_FILE_HH
10
#define INPUT_FILE_HH
11
#include <FlexLexer.h>
12
#include
"proto.hh"
13
#include
"fproto.hh"
14
#include
"varray.hh"
15
#include
"string.hh"
16
17
struct
Input_file
{
18
istream
*
is
;
19
char const
*
defined_ch_c_l_
;
20
Source_file
*
sourcefile_l_
;
21
int
line
;
22
String name
;
23
24
Input_file
(
String
);
25
~
Input_file
();
26
};
27
28
#endif
// INPUT_FILE_HH