Correct left text alignment of DynamicTextSpanner.
[lilypond.git] / lily / include / context-handle.hh
blob98898ccb5043abbe4f18f2fea639997c4b6732c6
1 /*
2 context-handle.hh -- declare Context_handle
4 source file of the GNU LilyPond music typesetter
6 (c) 1999--2007 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
9 #ifndef CONTEXT_HANDLE_HH
10 #define CONTEXT_HANDLE_HH
12 #include "lily-proto.hh"
15 class Context_handle
17 public:
18 ~Context_handle ();
19 Context_handle ();
21 void set_context (Context *);
22 void operator = (Context_handle const &);
23 Context_handle (Context_handle const &);
24 Context *get_outlet () const;
26 int get_count () const;
27 private:
28 Context *outlet_;
29 void down ();
30 void up (Context *);
33 #endif /* CONTEXT_HANDLE_HH */