summaryrefslogtreecommitdiff
path: root/hdr/meter.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hdr/meter.hh')
-rw-r--r--hdr/meter.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/hdr/meter.hh b/hdr/meter.hh
new file mode 100644
index 0000000000..6af8817265
--- /dev/null
+++ b/hdr/meter.hh
@@ -0,0 +1,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
+