]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-output.hh
(derived_mark): change signature, add
[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
16 class Music_output
17 {
18 public:
19   virtual SCM process (String)
20   {
21     return SCM_EOL;
22   }
23   virtual ~Music_output () {}
24 };
25
26 #endif /* MUSIC_OUTPUT_HH */