X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fincludable-lexer.hh;h=5f03e978548579351b15ebb57f1eeb6ff43dd014;hb=804385793dcad0400e6b7ccfe006fece27e5feac;hp=ab4f520ac1a77f2043b2119ff9a0a760542e3d4b;hpb=7e72a1e50e94a7f9738d62599de79fe7745f600c;p=lilypond.git diff --git a/lily/include/includable-lexer.hh b/lily/include/includable-lexer.hh index ab4f520ac1..5f03e97854 100644 --- a/lily/include/includable-lexer.hh +++ b/lily/include/includable-lexer.hh @@ -3,52 +3,49 @@ source file of the LilyPond music typesetter - (c) 1997--2004 Han-Wen Nienhuys + (c) 1997--2006 Han-Wen Nienhuys */ #ifndef INCLUDABLE_LEXER_HH #define INCLUDABLE_LEXER_HH #ifndef LEXER_CC -using namespace std; #include #endif -#include "string.hh" -#include "parray.hh" +#include "std-string.hh" +#include "std-vector.hh" #include "lily-proto.hh" // GIGA urg! typedef struct yy_buffer_state *YY_BUFFER_STATE; /** - an yyFlexLexer child with provisions for inclusion. - */ -class Includable_lexer : public yyFlexLexer + an yyFlexLexer child with provisions for inclusion. +*/ +class Includable_lexer : public yyFlexLexer { - Array state_stack_; + vector state_stack_; protected: - bool close_input (); - Link_array include_stack_; - Array char_count_stack_; + bool close_input (); + vector include_stack_; + vector char_count_stack_; public: bool allow_includes_b_; - + Includable_lexer (); ~Includable_lexer (); /// store dependencies for Makefile stuff. - Array filename_strings_; + vector file_name_strings_; - Source_file* get_source_file () const; - void new_input (String s, Sources*); - void new_input (String name, String data, Sources*); + Source_file *get_source_file () const; + void new_input (string s, Sources *); + void new_input (string name, string data, Sources *); - void add_lexed_char (int); - char const * here_str0 () const; + char const *here_str0 () const; }; - #endif // INCLUDABLE_LEXER_HH