]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/tie.hh
cleanup. Separate into internal
[lilypond.git] / lily / include / tie.hh
1 /*
2   tie.hh -- declare Tie
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef TIE_HH
11 #define TIE_HH
12
13 #include "lily-guile.hh"
14 #include "lily-proto.hh"
15
16
17 class Tie
18 {
19 public:
20   static void set_head (Grob*,Direction, Grob*head);
21   static void set_interface (Grob*);
22   static bool has_interface (Grob*);
23   static void set_direction (Grob*);
24   static Grob * head (Grob*,Direction) ;
25   static Real get_position (Grob*) ;
26   DECLARE_SCHEME_CALLBACK (print, (SCM ));
27   static Direction get_default_dir (Grob*) ;
28   static SCM get_control_points (SCM);
29   DECLARE_SCHEME_CALLBACK (set_spacing_rods, (SCM ));
30 };
31
32 #endif // TIE_HH