]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/meter.hh
release: 0.0.39-1
[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 struct Meter: Item {
14     Array<Scalar> args;
15     /* *************** */
16 NAME_MEMBERS(Meter);
17     
18     Meter(Array<Scalar> args) ;
19     Molecule*brew_molecule_p() const;
20 };
21 #endif // METER_HH
22