]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.2
authorfred <fred>
Tue, 8 Oct 1996 22:57:11 +0000 (22:57 +0000)
committerfred <fred>
Tue, 8 Oct 1996 22:57:11 +0000 (22:57 +0000)
boxes.cc
boxes.hh
symtable.hh

index e042c253333087e2360929217826143ff0fe119f..3965a0659e8f7870906cc5ffafe7ca753bc67407 100644 (file)
--- a/boxes.cc
+++ b/boxes.cc
@@ -20,3 +20,8 @@ Box::Box()
 {
     
 }
+Box::Box(Interval ix, Interval iy)
+{
+    x=ix;
+    y = iy;
+}
index 4413169596d4e0762e698593514475ec008a231f..c9ff3e62efa952b215c98acdee2af1a8af9f10da 100644 (file)
--- a/boxes.hh
+++ b/boxes.hh
@@ -76,6 +76,7 @@ struct Box {
     }
     Box(svec<Real> );
     Box();
+    Box(Interval ix, Interval iy);
 };
 
 
index 20cd45022eebf116fed0db45f7e509044bf5e0aa..9d5213a7c36ff9f381faa86bf46b5321a838e37e 100644 (file)
@@ -1,5 +1,5 @@
 struct  Symtable : public Assoc<String, Symbol> {
-    
+
 };