]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/dimension-cache.cc
*** empty log message ***
[lilypond.git] / lily / dimension-cache.cc
index c98b949fd31a81bc3a79571f55999d6e45471c25..ff47aab7e8494b155bd1647fb18ddba1c0f02804 100644 (file)
@@ -1,26 +1,25 @@
-/*   
-  dimension-cache.cc --  implement Dimension_cache
-  
+/*
+  dimension-cache.cc -- implement Dimension_cache
+
   source file of the GNU LilyPond music typesetter
-  
-  (c) 1998--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
- */
-#include <math.h>
-#include "warn.hh"
+
+  (c) 1998--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+*/
+
+
 #include "dimension-cache.hh"
-#include "parray.hh"
+#include "warn.hh"
 #include "grob.hh"
 
-
 Dimension_cache::Dimension_cache (Dimension_cache const &d)
 {
   init ();
   dimension_ = d.dimension_;
-
+  dimension_callback_ = d.dimension_callback_;
   offset_ = d.offset_;
   offset_callbacks_ = d.offset_callbacks_;
   offsets_left_ = d.offsets_left_;
-  parent_ = d.parent_;  
+  parent_ = d.parent_;
 }
 
 Dimension_cache::Dimension_cache ()
@@ -32,17 +31,12 @@ void
 Dimension_cache::init ()
 {
   dimension_ = SCM_EOL;
+  dimension_callback_ = SCM_EOL;
 
   offsets_left_ = 0;
   offset_callbacks_ = SCM_EOL;
-  offset_ =0.0;
-  
-  parent_ =0;
-}
-
-
-
-
-
+  offset_ = 0.0;
 
+  parent_ = 0;
+}