]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/time-signature.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / time-signature.hh
1 /*
2   time_signature.hh -- declare Time_signature
3
4   (c) 1996--2008 Han-Wen Nienhuys
5 */
6
7 #ifndef METER_HH
8 #define METER_HH
9
10 #include "grob-interface.hh"
11 #include "lily-proto.hh"
12
13 /**
14    Print a time_signature sign.
15
16    TODO:
17
18    2+3+2/8 time_signatures
19 */
20 struct Time_signature
21 {
22   DECLARE_GROB_INTERFACE();
23   static Stencil special_time_signature (Grob *, SCM, int, int);
24   static Stencil numbered_time_signature (Grob *, int, int);
25   DECLARE_SCHEME_CALLBACK (print, (SCM));
26 };
27 #endif // METER_HH
28