From: fred Date: Tue, 8 Oct 1996 22:57:11 +0000 (+0000) Subject: lilypond-0.0.2 X-Git-Tag: release/1.5.59~7140 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b42cdcfa7c7169cde95d79635f87ba0f9d478a49;p=lilypond.git lilypond-0.0.2 --- diff --git a/boxes.cc b/boxes.cc index e042c25333..3965a0659e 100644 --- a/boxes.cc +++ b/boxes.cc @@ -20,3 +20,8 @@ Box::Box() { } +Box::Box(Interval ix, Interval iy) +{ + x=ix; + y = iy; +} diff --git a/boxes.hh b/boxes.hh index 4413169596..c9ff3e62ef 100644 --- a/boxes.hh +++ b/boxes.hh @@ -76,6 +76,7 @@ struct Box { } Box(svec ); Box(); + Box(Interval ix, Interval iy); }; diff --git a/symtable.hh b/symtable.hh index 20cd45022e..9d5213a7c3 100644 --- a/symtable.hh +++ b/symtable.hh @@ -1,5 +1,5 @@ struct Symtable : public Assoc { - + };