]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/interpretation-context-handle.hh
Uniformize, internalize.
[lilypond.git] / lily / include / interpretation-context-handle.hh
index 80db970f4549487f85750bd2eb6a49fb592f47b6..944b5127e7696a048d2f865eae299c7b71ed6035 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c)  1999--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
   
  */
 
 #define INTERPRETATION_CONTEXT_HANDLE_HH
 #include "lily-proto.hh"
 
+/*
+RENAME ME to Context_handle.
+*/
+   
 class Interpretation_context_handle
 {
 public:
   ~Interpretation_context_handle ();
   Interpretation_context_handle ();
-  Interpretation_context_handle* clone () const;
-  void set_translator (Translator_group*);
+
+  void set_context (Context *);
   bool try_music (Music *);
   void operator = (Interpretation_context_handle const&);
   Interpretation_context_handle (Interpretation_context_handle const&);
-  Translator_group * report_to () const;
+  Context * get_outlet () const;
 
+  int get_count () const;
   void quit ();
 private:
-  Translator_group * report_to_;
+  Context * outlet_;
   void down ();
-  void up (Translator_group*);
+  void up (Context *);
 };
 
 #endif /* INTERPRETATION_CONTEXT_HANDLE_HH */