From: fred Date: Wed, 2 Oct 1996 12:58:59 +0000 (+0000) Subject: lilypond-0.0.1 X-Git-Tag: release/1.5.59~7184 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f36d1d2daf5fdd5fdc51b8e073ae27d847c48566;p=lilypond.git lilypond-0.0.1 --- 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) +{ +} +