]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/time-signature.hh
f402a67a17bf8d48c626aad2fe3d36f13fdec699
[lilypond.git] / lily / include / time-signature.hh
1 /*
2   time_signature.hh -- declare Time_signature
3
4   (c) 1996--2001 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 Molecule special_time_signature (Grob*,String,int,int) ;
23   static Molecule time_signature (Grob*,int, int);
24   DECLARE_SCHEME_CALLBACK (brew_molecule, (SCM ));
25 };
26 #endif // METER_HH
27