]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/warn.hh
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / flower / include / warn.hh
index e58ed4887af021154f04383ea6a9986a5289860d..3c2a6dc0a9ad1b754cc9d349b96b262715422043 100644 (file)
@@ -1,22 +1,33 @@
 /*
-  warn.hh -- declare Error message functions
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the LilyPond music typesetter
+  Copyright (C) 1997--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.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 WARN_HH
 #define WARN_HH
 
-#include "string.hh"
-
-void error (String message_string);
-void message (String s);
-void non_fatal_error (String);
-void programming_error (String s);
-void warning (String message_string);
+#include "std-string.hh"
 
-#define progress_indication message
+void error (string s);
+void message (string s);
+void non_fatal_error (string);
+void programming_error (string s);
+void progress_indication (string s);
+void warning (string s);
+void successful (string s);
 
 #endif /* WARN_HH */