]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/time-signature.hh
* Another grand 2003 update.
[lilypond.git] / lily / include / time-signature.hh
1 /*
2   time_signature.hh -- declare Time_signature
3
4   (c)  1996--2003 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  */
20 struct Time_signature
21 {
22   static bool has_interface (Grob*);
23   static Molecule special_time_signature (Grob*,SCM,int,int) ;
24   static Molecule numbered_time_signature (Grob*,int, int);
25   DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
26 };
27 #endif // METER_HH
28