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