From: fred Date: Sun, 24 Mar 2002 20:02:43 +0000 (+0000) Subject: lilypond-0.1.15 X-Git-Tag: release/1.5.59~3601 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d16b2a138b968f2c239462785c72eb9839724425;p=lilypond.git lilypond-0.1.15 --- diff --git a/lily/symbol.cc b/lily/symbol.cc deleted file mode 100644 index 9ba3d45f58..0000000000 --- a/lily/symbol.cc +++ /dev/null @@ -1,21 +0,0 @@ -#include "symbol.hh" -#include "varray.hh" - - -Symbol::Symbol() - : dim (Interval (0,0),Interval (0,0)) -{ - tex = "\\unknown"; -} -Symbol::Symbol (String s, Box b) - : dim (b) -{ - tex = s; -} - - -String -Symbol::str() const -{ - return "symbol (\'"+tex+"\', (" + dim.x().str () + ", " + dim.y ().str () + "))"; -}