]> git.donarmstrong.com Git - lilypond.git/blob - lily/specialty-engraver.cc
release: 1.3.8
[lilypond.git] / lily / specialty-engraver.cc
1 #if 0
2 // not finished yet.
3 /*   
4   specialty-engraver.cc --  implement  Specialty_engraver
5   
6   source file of the GNU LilyPond music typesetter
7   
8   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
9   
10  */
11
12
13 #include "engraver.hh"
14
15 class Specialty_engraver : public Engraver
16 {
17
18 public:
19   VIRTUAL_COPY_CONS(Translator);
20 protected:
21   void acknowledge_element (Score_element_info);
22 };
23
24
25 void
26 Specialty_engraver::acknowledge_element (Score_element_info )
27 {
28   /*
29     We could do groovy stuff, by inserting our own custom (FUNC,FONT)
30     pairs (Atoms in fact) into acknowledged elements.
31
32     But not yet.  This would be cleaner if we had SCM as properties.
33   */
34 }
35 #endif