]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/grid-line-interface.hh
Run `make grand-replace'.
[lilypond.git] / lily / include / grid-line-interface.hh
1 /*
2   grid-line-interface.hh -- declare Grid_line_interface
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef GRID_LINE_INTERFACE_HH
10 #define GRID_LINE_INTERFACE_HH
11
12 #include "lily-proto.hh"
13 #include "grob-interface.hh"
14
15
16 class Grid_line_interface
17 {
18 public:
19   static void add_grid_point (Grob *me, Grob *b);
20   DECLARE_SCHEME_CALLBACK (print, (SCM));
21   DECLARE_SCHEME_CALLBACK (width, (SCM));
22   DECLARE_GROB_INTERFACE();
23 };
24
25 class Grid_point_interface
26 {
27 public:
28   DECLARE_GROB_INTERFACE();
29 };
30
31 #endif /* GRID_LINE_INTERFACE_HH */
32