]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/interpretation-context-handle.hh
release: 1.3.86
[lilypond.git] / lily / include / interpretation-context-handle.hh
1 /*   
2   interpretation-context-handle.hh -- declare  Interpretation_context_handle
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef INTERPRETATION_CONTEXT_HANDLE_HH
11 #define INTERPRETATION_CONTEXT_HANDLE_HH
12 #include "lily-proto.hh"
13
14 class Interpretation_context_handle
15 {
16   Translator_group * report_to_l_;
17   void down ();
18   void up (Translator_group*);
19 public:
20   ~Interpretation_context_handle ();
21   Interpretation_context_handle ();
22   void set_translator (Translator_group*);
23   bool try_music (Music *);
24   void operator =(Interpretation_context_handle const&);
25   Interpretation_context_handle (Interpretation_context_handle const&);
26   Translator_group * report_to_l () const;
27 };
28
29 #endif /* INTERPRETATION_CONTEXT_HANDLE_HH */
30