]> git.donarmstrong.com Git - lilypond.git/blob - lily/offset.cc
partial: 0.1.57.jcn
[lilypond.git] / lily / offset.cc
1 /*
2   offset.cc -- implement Offset
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include "string.hh"
10 #include "offset.hh"
11
12 String
13 Offset::str () const
14 {
15   String s;
16   s = String("(") + coordinate_a_[X_AXIS] + ", " + coordinate_a_[Y_AXIS] + ")";
17   return s;
18 }