]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/includable-lexer.hh
Run grand replace for 2015.
[lilypond.git] / lily / include / includable-lexer.hh
index c103ba97f52579565aecc16ca7557cd308c7886f..bfc3d81718904244e7b4638735f9105bb905fdfd 100644 (file)
@@ -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--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  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 <http://www.gnu.org/licenses/>.
 */
 
 #ifndef INCLUDABLE_LEXER_HH
@@ -29,22 +40,23 @@ class Includable_lexer : public yyFlexLexer
 
 protected:
   bool close_input ();
-  vector<Source_file*> include_stack_;
+  vector<Source_file *> include_stack_;
   vector<int> char_count_stack_;
 
 public:
 
   Includable_lexer ();
   ~Includable_lexer ();
+  string main_input_name_;
 
   /// store dependencies for Makefile stuff.
   vector<string> file_name_strings_;
 
   Source_file *get_source_file () const;
-  virtual void new_input (string s, Sources *);
-  
-  void new_input (string name, string data, Sources *);
-  
+  virtual void new_input (const string &s, Sources *);
+
+  void new_input (const string &name, string data, Sources *);
+
   char const *here_str0 () const;
 };