]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/music-output.hh
* lily/include/music-output.hh (process): Change signature to
[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--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef MUSIC_OUTPUT_HH
11 #define MUSIC_OUTPUT_HH
12
13 #include "string.hh"
14 #include "lily-proto.hh"
15 #include "protected-scm.hh"
16
17 class Music_output 
18 {
19 public:
20   virtual SCM process (String) {return SCM_EOL;}
21   virtual ~Music_output () {}
22 };
23
24 #endif /* MUSIC_OUTPUT_HH */