]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/lilypond-input-version.hh
*** empty log message ***
[lilypond.git] / lily / include / lilypond-input-version.hh
index ce8e9f0355f0abba43e8881feaed7e039c7813e1..69e13e3b8692c16f6570c2cd77e81be0862b4a22 100644 (file)
@@ -1,29 +1,28 @@
 /*
-  lilypond-version.hh -- declare Lilypond_version
+  lilypond-version.hh -- declare LilyPond_version
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1998--2002 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 (std::string str);
 
-  String str () const;
+  std::string to_string () const;
   operator int () const;
 
-  int major_i_;
-  int minor_i_;
-  int patch_i_;
-  String extra_patch_str_;
+  int major_;
+  int minor_;
+  int patch_;
+  std::string extra_patch_string_;
 };
 
 extern Lilypond_version oldest_version;