]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/super-element.hh
cdc121c06eaa5a693a147f19b7479ba959801bfb
[lilypond.git] / lily / include / super-element.hh
1 /*
2   super-element.hh -- declare Super_element
3
4   source file of the LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef Super_element_HH
11 #define Super_element_HH
12
13 #include "score-element.hh"
14 /** The toplevel element. The Paper_score contains this element, and any
15   element shoud be a dependency for the super element.
16
17   It is the entry point for the "constraint solver"/ dependency
18   tracker.  Every XXXX_processing () call traverses the entire
19   dependency graph, and calls the appropriate
20   Score_element::do_XXX_processing function on each Score_element it encounters.
21   
22
23   FIXME: remove this class, to eliminate multiple inheritance. Merge
24   with Line_of_score ?  */
25 class Super_element : public virtual Score_element {
26 public:
27   void space_processing ();
28   void pre_processing();
29   void breakable_col_processing();
30   void break_processing();
31   void post_processing();
32   void output_all ();
33 };
34
35 #endif // Super_element_HH