]> git.donarmstrong.com Git - lilypond.git/blob - lily/staff-performer.cc
patch::: 0.0.74pre.jcn1: pats
[lilypond.git] / lily / staff-performer.cc
1 /*
2   staff-performer.cc -- implement Staff_performer
3
4   (c) 1996, 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5                  Jan Nieuwenhuizen <jan@digicash.com>
6  */
7
8
9 #include "staff-performer.hh"
10 #include "translator.hh"
11 #include "input-translator.hh"
12 #include "debug.hh"
13
14 IMPLEMENT_STATIC_NAME(Staff_performer);
15 IMPLEMENT_IS_TYPE_B1(Staff_performer,Performer_group_performer);
16 ADD_THIS_PERFORMER(Staff_performer);
17
18 Staff_performer::Staff_performer()
19 {
20 }
21
22 Staff_performer::~Staff_performer()
23 {
24 }
25
26 String 
27 Staff_performer::instrument_str() 
28
29     return Translator::id_str_; 
30 }
31
32 void 
33 Staff_performer::play_event( Midi_item* l )
34 {
35 //    l.track_i_ = midi_track_i_;
36     Performer::play_event( l );
37 }
38