From: fred Date: Thu, 31 Oct 1996 20:46:12 +0000 (+0000) Subject: lilypond-0.0.9 X-Git-Tag: release/1.5.59~6993 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d9fde36c89966313868dffa72d231f85a12c7ced;p=lilypond.git lilypond-0.0.9 --- diff --git a/src/pstaff.cc b/src/pstaff.cc new file mode 100644 index 0000000000..255fceeadd --- /dev/null +++ b/src/pstaff.cc @@ -0,0 +1,14 @@ +#include "pstaff.hh" + +PStaff::PStaff(PScore*ps) +{ + pscore_=ps; + stafsym = 0; +} + +void +PStaff::add(Item *i ) +{ + its.bottom().add(i); + i->pstaff_ = this; +}