]> git.donarmstrong.com Git - lilypond.git/blob - lily/performer.cc
patch::: 0.0.73pre.jcn1: epsilon performance
[lilypond.git] / lily / performer.cc
1 /*
2   performer.cc -- declare Performer
3
4   (c) 1996, 1997 Han-Wen Nienhuys <hanwen@stack.nl>
5                  Jan Nieuwenhuizen <jan@digicash.com>
6  */
7
8 #if 0
9
10 #include "lily-proto.hh"
11 #include "performer.hh"
12 #include "performer-group-performer.hh"
13
14 IMPLEMENT_STATIC_NAME(Performer);
15 IMPLEMENT_IS_TYPE_B(Performer);
16
17 Performer::Performer()
18 {
19 }
20
21 Performer::~Performer()
22 {
23 }
24
25 bool 
26 Performer::try_request( Request* req_l );
27 {
28     return daddy_perf_l_->try_request( req_l );
29 }
30
31 void 
32 Performer::play_event( Midi_item i ) 
33
34     daddy_perf_l_->play_event( i ); 
35 }
36
37 void
38 Performer::print() const
39 {
40 #ifndef NPRINT
41     mtor << "\n" << name() << " {";
42     do_print();
43     mtor << "}";
44 #endif
45 }
46
47
48 #endif