]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/interpretation-context-handle.hh
*** empty log message ***
[lilypond.git] / lily / include / interpretation-context-handle.hh
index fc15f7a19db3efc765d05490e7f1db62928a7c34..2a1a3641282f8e7787b52413210391d228a190c4 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 1999--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1999--2004 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
 {
-  Translator_group * report_to_l_;
-public:
-  void down ();
-  void up (Translator_group*);
 public:
   ~Interpretation_context_handle ();
   Interpretation_context_handle ();
-  void set_translator (Translator_group*);
+
+  void set_context (Context *);
   bool try_music (Music *);
-  void operator =(Interpretation_context_handle const&);
+  void operator = (Interpretation_context_handle const&);
   Interpretation_context_handle (Interpretation_context_handle const&);
-  Translator_group * report_to_l () const;
+  Context * get_outlet () const;
+
+  int get_count () const;
+  void quit ();
+private:
+  Context * outlet_;
+  void down ();
+  void up (Context *);
 };
 
 #endif /* INTERPRETATION_CONTEXT_HANDLE_HH */