]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/meter.hh
release: 0.1.8
[lilypond.git] / lily / include / meter.hh
1 /*
2   meter.hh -- declare Meter
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef METER_HH
8 #define METER_HH
9 #include "item.hh"
10 #include "varray.hh"
11 #include "scalar.hh"
12
13 /**
14   TODO:
15
16   C style meters, 2+3+2/8 meters, alla breve.
17   
18  */
19 class Meter: public Item {
20     Array<Scalar> args;
21     /* *************** */
22 protected:
23     Molecule*brew_molecule_p() const;
24 public:
25     Meter (Array<Scalar> args) ;
26     DECLARE_MY_RUNTIME_TYPEINFO;
27     SCORE_ELEM_CLONE(Meter);
28 };
29 #endif // METER_HH
30