]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/source-file.hh
* The grand 2005-2006 replace.
[lilypond.git] / lily / include / source-file.hh
index 1a610703489611b7b16c02443cdc6ea0183eb4bb..d3c5ab0aa5dfdcb2cfdd26d8d526e3fc556a71c3 100644 (file)
@@ -3,13 +3,14 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1999--2005 Jan Nieuwenhuizen <janneke@gnu.org>
+  (c) 1999--2006 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #ifndef SOURCE_FILE_HH
 #define SOURCE_FILE_HH
 
 #include <iostream>
+using namespace std;
 
 #include "string.hh"
 #include "protected-scm.hh"
@@ -33,7 +34,7 @@ public:
 
   char const *to_str0 () const;
   virtual String quote_input (char const *pos_str0) const;
-  std::istream *get_istream ();
+  istream *get_istream ();
   bool contains (char const *pos_str0) const;
   int length () const;
   virtual int get_line (char const *pos_str0) const;
@@ -66,7 +67,7 @@ public:
 
 private:
   Link_array<char> newline_locations_;
-  std::istream *istream_;
+  istream *istream_;
   char *contents_str0_;
   int length_;
   void load_stdin ();