summaryrefslogtreecommitdiff
path: root/hdr/meter.hh
blob: 6af881726577cb0a8dd248d739e0225d752300c5 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
  meter.hh -- part of LilyPond

  (c) 1996 Han-Wen Nienhuys
*/

#ifndef METER_HH
#define METER_HH
#include "item.hh"

struct Meter: Item {
    svec<String> args;
    
    Meter(svec<String> args) ;
    void preprocess();
};
#endif // METER_HH