]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/axes.hh
74d44ac8a31dfc3a8fadfd6dc1199b7467cbbf41
[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--2000 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 class String;
21
22 String axis_name_string (Axis);
23
24
25 /**
26   the operator ++ for Axis. 
27  */
28 Axis other_axis (Axis); 
29 Axis post_incr (Axis &);
30 Axis incr (Axis &);
31 //Axis operator++ (Axis);
32
33
34
35 #endif // AXES_HH