lilypond-1.3.16
[lilypond.git] / lily / include / axes.hh
blobb273f6b1020a9fb89d332b6f4c69a6f8573ea082
1 /*
2 axes.hh -- declare Axis
4 source file of the GNU LilyPond music typesetter
6 (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
10 #ifndef AXES_HH
11 #define AXES_HH
13 enum Axis {
14 X_AXIS =0,
15 Y_AXIS =1,
16 NO_AXES=2,
19 #include "string.hh" // ugh
21 String axis_name_str (Axis);
23 /**
24 the operator ++ for Axis.
26 Axis post_incr(Axis &);
27 Axis incr(Axis &);
28 //Axis operator++(Axis);
31 #endif // AXES_HH