]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/axes.hh
release: 1.1.60
[lilypond.git] / flower / include / axes.hh
1 /*
2   axes.hh -- declare Axis
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef AXES_HH
11 #define AXES_HH
12
13 enum Axis {
14     X_AXIS =0,
15     Y_AXIS =1,
16     NO_AXES=2,
17 };
18
19
20 #include "string.hh"            // ugh
21
22 String axis_name_str (Axis);
23
24
25 /**
26   the operator ++ for Axis. 
27  */
28 Axis post_incr(Axis &);
29 Axis incr(Axis &);
30 //Axis operator++(Axis);
31
32
33
34 #endif // AXES_HH