]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-output.hh
Run `make grand-replace'.
[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--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef MUSIC_OUTPUT_HH
10 #define MUSIC_OUTPUT_HH
11
12 #include "std-string.hh"
13 #include "lily-proto.hh"
14 #include "protected-scm.hh"
15 #include "smobs.hh"
16 #include "virtual-methods.hh"
17
18 class Music_output
19 {
20   DECLARE_SMOBS (Music_output);
21   DECLARE_CLASSNAME(Music_output);
22 protected:
23   Music_output ();
24
25 public:
26   virtual void derived_mark () const;
27   virtual void process ();
28 };
29
30 DECLARE_UNSMOB (Music_output, music_output);
31 Paper_score *unsmob_paper_score (SCM);
32 Performance *unsmob_performance (SCM);
33 #endif /* MUSIC_OUTPUT_HH */