]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/includable-lexer.hh
release: 1.1.28
[lilypond.git] / lily / include / includable-lexer.hh
1 /*
2   includable-lexer.hh -- declare Includable_lexer
3
4   source file of the LilyPond music typesetter
5
6   (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef INCLUDABLE_LEXER_HH
11 #define INCLUDABLE_LEXER_HH
12
13 #include <FlexLexer.h>
14
15 #include "string.hh"
16 #include "parray.hh"
17 #include "fproto.hh"
18 #include "proto.hh"
19
20 // GIGA urg!
21 typedef struct yy_buffer_state *YY_BUFFER_STATE;
22
23 /**
24   an yyFlexLexer child with provisions for inclusion.
25  */
26 class Includable_lexer : public yyFlexLexer 
27 {
28   Array<YY_BUFFER_STATE> state_stack_;
29
30 protected:
31   bool  close_input ();
32   Link_array<Source_file> include_stack_;
33   Array<int> char_count_stack_;
34
35 public:
36   bool allow_includes_b_;
37   
38   Includable_lexer ();
39   ~Includable_lexer ();
40
41   /// store dependencies for Makefile stuff.
42   Array<String> filename_str_arr_;
43
44   Source_file* source_file_l () const;
45   void new_input (String s, Sources*);
46   void new_input (String name, String data, Sources*);
47
48   void add_lexed_char (int);
49   char const * here_ch_C ();
50 };
51
52
53 #endif // INCLUDABLE_LEXER_HH