summaryrefslogtreecommitdiff
path: root/hdr/bar.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hdr/bar.hh')
-rw-r--r--hdr/bar.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/hdr/bar.hh b/hdr/bar.hh
new file mode 100644
index 0000000000..187fadfe78
--- /dev/null
+++ b/hdr/bar.hh
@@ -0,0 +1,18 @@
+/*
+ bar.hh -- part of LilyPond
+
+ (c) 1996 Han-Wen Nienhuys
+*/
+
+#ifndef BAR_HH
+#define BAR_HH
+#include "item.hh"
+
+struct Bar: Item {
+ String type;
+
+ Bar(String type);
+ void preprocess();
+};
+#endif // BAR_HH
+