]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/axes.hh
release: 0.1.57
[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 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 #ifndef STANDALONE
20
21 #include "string.hh"            // ugh
22
23 String axis_name_str (Axis);
24
25 #endif // STANDALONE
26
27 /**
28   the operator ++ for Axis. 
29  */
30 Axis post_incr(Axis &);
31 Axis incr(Axis &);
32 //Axis operator++(Axis);
33
34
35
36 #endif // AXES_HH