Correct left text alignment of DynamicTextSpanner.
[lilypond.git] / lily / include / lilypond-version.hh
blob32ba91198d1f7db26173bd9adb607cffab4ed994
1 /*
2 lilypond-version.hh -- declare LilyPond_version
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2007 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
9 #ifndef LILYPOND_VERSION_HH
10 #define LILYPOND_VERSION_HH
12 #include "std-string.hh"
14 struct Lilypond_version
16 Lilypond_version (int major, int minor, int patch);
17 Lilypond_version (string str);
19 string to_string () const;
20 operator int () const;
22 int major_;
23 int minor_;
24 int patch_;
25 string extra_patch_string_;
28 extern Lilypond_version oldest_version;
30 #endif // LILYPOND_VERSION_HH