]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/input.cc
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / lily / input.cc
index a9ad1c970e56b239c4c3d41339badd5c16602271..1379f1c7b579ed76f3937f4c84ae891149668882 100644 (file)
@@ -3,15 +3,17 @@
 
   source file of the LilyPond music typesetter
 
-  (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #include "input.hh"
 
 #include <cstdio>
+using namespace std;
 
-#include "source.hh"
+#include "international.hh"
 #include "source-file.hh"
+#include "source.hh"
 #include "warn.hh"
 
 Input::Input (Input const &i)
@@ -65,7 +67,7 @@ Input::set_location (Input const &i_start, Input const &i_end)
   [file:line:column:][warning:]message
 */
 void
-Input::message (String s) const
+Input::message (string s) const
 {
   if (source_file_)
     s = location_string () + ": " + s + "\n"
@@ -74,13 +76,13 @@ Input::message (String s) const
 }
 
 void
-Input::warning (String s) const
+Input::warning (string s) const
 {
   message (_f ("warning: %s", s));
 }
 
 void
-Input::error (String s) const
+Input::error (string s) const
 {
   message (_f ("error: %s", s));
   // UGH, fix naming or usage
@@ -88,12 +90,12 @@ Input::error (String s) const
 }
 
 void
-Input::non_fatal_error (String s) const
+Input::non_fatal_error (string s) const
 {
   message (_f ("error: %s", s));
 }
 
-String
+string
 Input::location_string () const
 {
   if (source_file_)
@@ -101,7 +103,7 @@ Input::location_string () const
   return " (" + _ ("position unknown") + ")";
 }
 
-String
+string
 Input::line_number_string () const
 {
   if (source_file_)
@@ -109,7 +111,7 @@ Input::line_number_string () const
   return "?";
 }
 
-String
+string
 Input::file_string () const
 {
   if (source_file_)
@@ -152,7 +154,7 @@ Input::end_column_number () const
 }
 
 void
-Input::get_counts (int *line, int *chr, int*col) const
+Input::get_counts (int *line, int *chr, int *col) const
 {
   source_file_->get_counts (start_, line, chr, col);
 }
@@ -162,23 +164,22 @@ Input::set (Source_file *sf, char const *start, char const *end)
 {
   source_file_ = sf;
   start_ = start;
-  end_ = end;  
+  end_ = end;
 }
 
-Source_file
+Source_file *
 Input::get_source_file () const
 {
   return source_file_;
 }
 
-
-char const * 
+char const *
 Input::start () const
 {
   return start_;
 }
 
-char const * 
+char const *
 Input::end () const
 {
   return end_;