From 81866783eddda708c36f0f3766fd81fcd8986eaf Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 8 Oct 1996 22:56:28 +0000 Subject: [PATCH] lilypond-0.0.2 --- boxes.cc | 5 +++++ boxes.hh | 1 + symtable.hh | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) 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 { - + }; -- 2.11.4.GIT