X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fincludable-lexer.hh;h=a7ca04ca24cffff02a12349047444a6dccc447c9;hb=766e64a52830a300841dae05235f5aa96fd330fa;hp=768e759b54f1deb5be4646f3023fb119c80854e3;hpb=16cb456cabf477f6d398ff731aa0f10b60913394;p=lilypond.git diff --git a/lily/include/includable-lexer.hh b/lily/include/includable-lexer.hh index 768e759b54..a7ca04ca24 100644 --- a/lily/include/includable-lexer.hh +++ b/lily/include/includable-lexer.hh @@ -1,9 +1,20 @@ /* - includable-lexer.hh -- declare Includable_lexer + This file is part of LilyPond, the GNU music typesetter. - source file of the LilyPond music typesetter + Copyright (C) 1997--2011 Han-Wen Nienhuys - (c) 1997--2007 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #ifndef INCLUDABLE_LEXER_HH @@ -31,11 +42,13 @@ protected: bool close_input (); vector include_stack_; vector char_count_stack_; + vector pending_string_includes_; public: Includable_lexer (); ~Includable_lexer (); + string main_input_name_; /// store dependencies for Makefile stuff. vector file_name_strings_; @@ -44,6 +57,7 @@ public: virtual void new_input (string s, Sources *); void new_input (string name, string data, Sources *); + void add_string_include (string data); char const *here_str0 () const; };