]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-output.hh
(parse_symbol_list): Bugfix.
[lilypond.git] / lily / include / music-output.hh
1 /*
2   music-output.hh -- declare Music_output
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef MUSIC_OUTPUT_HH
10 #define MUSIC_OUTPUT_HH
11
12 #include "string.hh"
13 #include "lily-proto.hh"
14 #include "protected-scm.hh"
15 #include "smobs.hh"
16
17 class Music_output
18 {
19   DECLARE_SMOBS (Music_output, foo);
20
21 protected:
22   Music_output ();
23
24 public:
25   virtual void derived_mark () const;
26   virtual void process ();
27 };
28
29 DECLARE_UNSMOB (Music_output, music_output);
30
31 #endif /* MUSIC_OUTPUT_HH */