]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/includable-lexer.hh
* lily/score.cc (Score): unprotect copy of Output_def. Plugs
[lilypond.git] / lily / include / includable-lexer.hh
index 9cf7087369832046e9946caea707284992c46baf..b7edcbb29e8debac5b597dcfde53dcefecba3474 100644 (file)
@@ -3,43 +3,50 @@
 
   source file of the LilyPond music typesetter
 
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.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
 
 #include "string.hh"
-#include "varray.hh"
-#include "fproto.hh"
-#include "proto.hh"
+#include "parray.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<YY_BUFFER_STATE> state_stack_;
+
 protected:
-  bool  close_input ();
-  Array<Source_file*> include_stack_;
+  bool close_input ();
+  Link_array<Source_file> include_stack_;
   Array<int> char_count_stack_;
+
 public:
-  /// store dependencies for Makefile stuff.
-  Array<String> filename_str_arr_;
+  bool allow_includes_b_;
 
-  Source_file* source_file_l () const;
-  void new_input (String s,Sources*);
   Includable_lexer ();
   ~Includable_lexer ();
-  void add_lexed_char (int);
-  char const * here_ch_C ();
-};
 
+  /// store dependencies for Makefile stuff.
+  Array<String> file_name_strings_;
+
+  Source_file *get_source_file () const;
+  void new_input (String s, Sources *);
+  void new_input (String name, String data, Sources *);
+
+  char const *here_str0 () const;
+};
 
 #endif // INCLUDABLE_LEXER_HH