]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/timing-translator.hh
Run `make grand-replace'.
[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--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #ifndef TIMING_TRANSLATOR_HH
10 #define TIMING_TRANSLATOR_HH
11
12 #include "moment.hh"
13 #include "translator.hh"
14
15 class Timing_translator : public Translator
16 {
17 public:
18   TRANSLATOR_DECLARATIONS (Timing_translator);
19
20 protected:
21   virtual void initialize ();
22   void stop_translation_timestep ();
23   void start_translation_timestep ();
24
25 public:
26   Rational measure_length () const;
27 };
28
29 #endif // TIMING_TRANSLATOR_HH