]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/mudela-version.hh
7135fc88974df2611b585366046c3fad9def3e4c
[lilypond.git] / lily / include / mudela-version.hh
1 /*
2   mudela-version.hh -- declare Mudela_version
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1998--1999 Jan Nieuwenhuizen <janneke@gnu.org>
7
8 */
9
10 #ifndef MUDELA_VERSION_HH
11 #define MUDELA_VERSION_HH
12
13 #include "string.hh"
14
15 struct Mudela_version 
16 {
17   Mudela_version (int major, int minor, int patch);
18   Mudela_version (String str);
19
20   String str () const;
21   operator int () const;
22
23   int major_i_;
24   int minor_i_;
25   int patch_i_;
26 };
27
28 #endif // MUDELA_VERSION_HH