]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/font-size-engraver.hh
release: 1.1.29
[lilypond.git] / lily / include / font-size-engraver.hh
1 /*   
2   font-size-engraver.hh -- declare Font_size_engraver
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1998--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef FONT_SIZE_GRAV_HH
11 #define FONT_SIZE_GRAV_HH
12
13 #include "engraver.hh"
14
15 class Font_size_engraver : public Engraver {
16   int size_i_;
17 protected:
18   virtual void acknowledge_element (Score_element_info);
19   virtual void  do_process_requests ();
20 public:
21   Font_size_engraver ();
22   
23   VIRTUAL_COPY_CONS (Translator);
24 };
25
26 #endif /* FONT_SIZE_GRAV_HH */
27