lilypond-1.1.44
[lilypond.git] / hdr / inputfile.hh
blob5e55050299f9e9ff4bbd28b3ec86b742c7cf516b
1 /*
2 inputfile.hh -- declare Input_file
4 source file of the LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
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"
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;
24 Input_file(String);
25 ~Input_file();
28 #endif // INPUT_FILE_HH