lilypond-1.1.44
[lilypond.git] / lily / include / meter.hh
blob8347b3fa2d98befc3a1815dd65a955ac27d948bb
1 /*
2 meter.hh -- declare Meter
4 (c) 1996,97 Han-Wen Nienhuys
5 */
7 #ifndef METER_HH
8 #define METER_HH
9 #include "item.hh"
10 #include "varray.hh"
11 #include "scalar.hh"
13 /**
14 TODO:
16 C style meters, 2+3+2/8 meters, alla breve.
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);
29 #endif // METER_HH