summaryrefslogtreecommitdiff
path: root/lookupsyms.hh
diff options
context:
space:
mode:
Diffstat (limited to 'lookupsyms.hh')
-rw-r--r--lookupsyms.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/lookupsyms.hh b/lookupsyms.hh
new file mode 100644
index 0000000000..d4e08667db
--- /dev/null
+++ b/lookupsyms.hh
@@ -0,0 +1,18 @@
+/*
+ lilypond, (c) 1996 Han-Wen Nienhuys
+*/
+#ifndef LOOKUPSYMS_HH
+#define LOOKUPSYMS_HH
+
+#include "symbol.hh"
+
+struct Lookup {
+ static Parametric_symbol *linestaff(int n);
+ static Parametric_symbol *meter(String);
+ static Symbol ball(int);
+ static Symbol rest(int);
+ static Symbol bar(String);
+ static Symbol dots(int);
+};
+
+#endif