2 tie-specification.hh -- declare Tie_specification
4 source file of the GNU LilyPond music typesetter
6 (c) 2007 Han-Wen Nienhuys <hanwen@lilypond.org>
10 #ifndef TIE_SPECIFICATION_HH
11 #define TIE_SPECIFICATION_HH
13 #include "lily-proto.hh"
14 #include "drul-array.hh"
16 struct Tie_specification
19 Drul_array<Grob*> note_head_drul_;
20 Drul_array<int> column_ranks_;
23 bool has_manual_position_;
25 bool has_manual_delta_y_;
28 Real manual_position_;
29 Direction manual_dir_;
32 int column_span () const;
33 void from_grob (Grob *);
36 #endif /* TIE_SPECIFICATION_HH */