]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/staff-performer.hh
patch::: 1.3.108.jcn5
[lilypond.git] / lily / include / staff-performer.hh
index 7fdaea3a0e96c309faf085853a9a1400eb4ab87d..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,44 +0,0 @@
-/*
-  staff-performer.hh -- declare Staff_performer
-
-  (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
-                 Jan Nieuwenhuizen <janneke@gnu.org>
- */
-
-#ifndef STAFF_PERFORMER_HH
-#define STAFF_PERFORMER_HH
-
-#include "performer-group-performer.hh"
-
-/** Perform a staff. Individual notes should have their instrument
-  (staff-wide) set, so we override play_element()
-
-  */
-class Staff_performer : public Performer_group_performer 
-{
-public:
-  VIRTUAL_COPY_CONS(Translator);
-  
-
-  Staff_performer ();
-  ~Staff_performer ();
-
-  String new_instrument_str ();
-  String instrument_str_;
-
-protected:
-  virtual void play_element (Audio_element* p);
-  virtual void do_removal_processing ();
-  virtual void do_creation_processing ();
-  void deprecated_process_music ();
-  virtual void do_pre_move_processing ();
-
-private:
-  Audio_staff* audio_staff_p_;
-  Audio_instrument* instrument_p_;
-  Audio_text* instrument_name_p_;
-  Audio_text* name_p_;
-  Audio_tempo* tempo_p_;
-};
-
-#endif // STAFF_PERFORMER_HH