From f36d1d2daf5fdd5fdc51b8e073ae27d847c48566 Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 2 Oct 1996 12:58:59 +0000 Subject: [PATCH] lilypond-0.0.1 --- linestaff.hh | 8 ++++++++ symbol.cc | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 linestaff.hh create mode 100644 symbol.cc diff --git a/linestaff.hh b/linestaff.hh new file mode 100644 index 0000000000..7ca34f5739 --- /dev/null +++ b/linestaff.hh @@ -0,0 +1,8 @@ +#include "pstaff.hh" + +struct Linestaff : PStaff { + int nolines; + + Linestaff(int); + +}; diff --git a/symbol.cc b/symbol.cc new file mode 100644 index 0000000000..9a3e8cdf62 --- /dev/null +++ b/symbol.cc @@ -0,0 +1,7 @@ +#include "tex.hh" + +Symbol::Symbol(String s, Box b) + : tex(s), dim(b) +{ +} + -- 2.39.5