]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/includable-lexer.hh
* scm/define-context-properties.scm
[lilypond.git] / lily / include / includable-lexer.hh
index ab4f520ac1a77f2043b2119ff9a0a760542e3d4b..afeb4a35bc255fa089e256a70bda2e5f94e21bb7 100644 (file)
@@ -3,14 +3,13 @@
 
   source file of the LilyPond music typesetter
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #ifndef INCLUDABLE_LEXER_HH
 #define INCLUDABLE_LEXER_HH
 
 #ifndef LEXER_CC
-using namespace std;
 #include <FlexLexer.h>
 #endif
 
@@ -22,33 +21,31 @@ using namespace std;
 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<YY_BUFFER_STATE> state_stack_;
 
 protected:
-  bool  close_input ();
+  bool close_input ();
   Link_array<Source_file> include_stack_;
   Array<int> char_count_stack_;
 
 public:
   bool allow_includes_b_;
-  
+
   Includable_lexer ();
   ~Includable_lexer ();
 
   /// store dependencies for Makefile stuff.
-  Array<String> filename_strings_;
+  Array<String> file_name_strings_;
 
-  Source_fileget_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