lilypond-1.3.74
[lilypond.git] / lily / offset.cc
blob105e7fb3850869974320fcb09d6f290cee430999
1 /*
2 offset.cc -- implement Offset
4 source file of the GNU LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
9 #include "string.hh"
10 #include "offset.hh"
12 String
13 Offset::str () const
15 String s;
16 s = String("(") + coordinate_a_[X_AXIS] + ", " + coordinate_a_[Y_AXIS] + ")";
17 return s;