]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/lilypond-input-version.hh
sort commits, and use .git-commits-done file.
[lilypond.git] / lily / include / lilypond-input-version.hh
index e71f6f4b2dafb26cb2be0fe17dd6eeb65b3ff6c6..12c4782205f5d828a58e4522a468cd318418b376 100644 (file)
@@ -3,27 +3,26 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1998--2003 Jan Nieuwenhuizen <janneke@gnu.org>
-
+  (c) 1998--2006 Jan Nieuwenhuizen <janneke@gnu.org>
 */
 
 #ifndef LILYPOND_VERSION_HH
 #define LILYPOND_VERSION_HH
 
-#include "string.hh"
+#include "std-string.hh"
 
-struct Lilypond_version 
+struct Lilypond_version
 {
   Lilypond_version (int major, int minor, int patch);
-  Lilypond_version (String str);
+  Lilypond_version (string str);
 
-  String to_string () const;
+  string to_string () const;
   operator int () const;
 
   int major_;
   int minor_;
   int patch_;
-  String extra_patch_string_;
+  string extra_patch_string_;
 };
 
 extern Lilypond_version oldest_version;