2 direction.cc -- implement Direction
4 source file of the GNU LilyPond music typesetter
6 (c) 1998--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #include "direction.hh"
14 direction_string (Direction d
, Axis a
)
19 s
= ( d
== UP
? "up" : "down");
23 s
= (d
== LEFT
? "left" : "right" );