]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/timing-translator.hh
(parse_symbol_list): Bugfix.
[lilypond.git] / lily / include / timing-translator.hh
1 /*
2   timing-translator.hh -- declare Timing_translator
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 TIMING_TRANSLATOR_HH
10 #define TIMING_TRANSLATOR_HH
11
12 #include "moment.hh"
13 #include "translator.hh"
14
15 #include "parray.hh"
16
17 class Timing_translator : public Translator
18 {
19 public:
20   TRANSLATOR_DECLARATIONS (Timing_translator);
21
22 protected:
23   virtual void initialize ();
24   void stop_translation_timestep ();
25   void start_translation_timestep ();
26
27 public:
28   Rational measure_length () const;
29 };
30
31 #endif // TIMING_TRANSLATOR_HH