]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/super-element.hh
release: 1.0.6
[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--1998 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 class Super_element : public virtual Score_element {
18 public:
19   Super_element();
20
21   void space_processing ();
22   void pre_processing();
23   void breakable_col_processing();
24   void break_processing();
25   void post_processing();
26   void output_all ();
27   void unlink_all ();
28
29 protected:
30   DECLARE_MY_RUNTIME_TYPEINFO;
31 };
32
33 #endif // Super_element_HH