]> git.donarmstrong.com Git - lilypond.git/blob - hdr/meter.hh
1557ce4709464f189f4a6d9708a6db563a7ad401
[lilypond.git] / hdr / meter.hh
1 /*
2   meter.hh -- part of LilyPond
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
12 struct Meter: Item {
13     Array<Scalar> args;
14     /****************/
15     
16     Meter(Array<Scalar> args) ;
17     Molecule*brew_molecule_p() const;
18 };
19 #endif // METER_HH
20