]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/axes.hh
partial: 0.1.57.jcn
[lilypond.git] / lily / include / axes.hh
1 /*
2   axes.hh -- declare Axis
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.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 #include "string.hh"            // ugh
20
21 String axis_name_str (Axis);
22
23 /**
24   the operator ++ for Axis. 
25  */
26 Axis post_incr(Axis &);
27 Axis incr(Axis &);
28 //Axis operator++(Axis);
29
30
31 #endif // AXES_HH