]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/lilypond-version.hh
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / include / lilypond-version.hh
index 1d25de986e66aac76064dbcd77764f35711f71bf..818414abdf15abb3f2ec83e53a261d2c08014fad 100644 (file)
 struct Lilypond_version
 {
   Lilypond_version (int major, int minor, int patch);
-  Lilypond_version (const std::string &str);
+  Lilypond_version (const string &str);
 
-  std::string to_string () const;
+  string to_string () const;
   operator bool () const;
   static int compare (const Lilypond_version &, const Lilypond_version &);
 
   int major_;
   int minor_;
   int patch_;
-  std::string extra_patch_string_;
+  string extra_patch_string_;
 };
 
 INSTANTIATE_COMPARE (const Lilypond_version &, Lilypond_version::compare);