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>
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;
25 string extra_patch_string_
;
28 extern Lilypond_version oldest_version
;
30 #endif // LILYPOND_VERSION_HH