]> git.donarmstrong.com Git - lilypond.git/blob - lily/new-chord-tremolo-engraver.cc
patch::: 1.3.40.jcn4
[lilypond.git] / lily / new-chord-tremolo-engraver.cc
1 #if 0
2 /*   
3   new-chord-tremolo-engraver.cc --  implement New_chord_tremolo_engraver
4   
5   source file of the GNU LilyPond music typesetter
6   
7   (c) 2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8   
9  */
10
11
12
13 class New_chord_tremolo_engraver : public Engraver
14 {
15 public:
16   VIRTUAL_COPY_CONS(Translator);
17   New_chord_tremolo_engraver();
18 protected:
19
20   virtual bool do_try_music (Music *);
21   virtual void do_process_music ();
22 };
23
24 New_chord_tremolo_engraver::New_chord_tremolo_engraver()
25 {
26 }
27
28 bool
29 New_chord_tremolo_engraver::do_try_music (Music * m)
30 {
31   if (dynamic_cast<Repeated_music*> (m))
32     {
33       
34     }
35 }
36
37 #endif