*** empty log message ***
[lilypond.git] / lily / include / lilypond-input-version.hh
blob000e74d541a8727a9de94d51cfa7e4a426284d91
1 /*
2 lilypond-version.hh -- declare Lilypond_version
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2002 Jan Nieuwenhuizen <janneke@gnu.org>
8 */
10 #ifndef LILYPOND_VERSION_HH
11 #define LILYPOND_VERSION_HH
13 #include "string.hh"
15 struct Lilypond_version
17 Lilypond_version (int major, int minor, int patch);
18 Lilypond_version (String str);
20 String to_string () const;
21 operator int () const;
23 int major_;
24 int minor_;
25 int patch_;
26 String extra_patch_string_;
29 extern Lilypond_version oldest_version;
31 #endif // LILYPOND_VERSION_HH