comparison src/testApp.cpp @ 15:9e972948d654

looking at offline version - need to do updateBestEstimate routine which presently only works for realtime
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Tue, 15 Nov 2011 13:10:12 +0000
parents 3f103cf78148
children 9860abc92a30
comparison
equal deleted inserted replaced
14:3f103cf78148 15:9e972948d654
63 63
64 if ( m.getAddress() == "/stopplaying" ) 64 if ( m.getAddress() == "/stopplaying" )
65 { 65 {
66 stopPlaying(); 66 stopPlaying();
67 } 67 }
68
69
70
71 if ( m.getAddress() == "/realtime" )
72 {
73 midiEvents.runningInRealTime = true;
74 }
75
76
77 if ( m.getAddress() == "/offline" )
78 {
79 midiEvents.runningInRealTime = false;
80 }
81
68 }//end while osc 82 }//end while osc
69 83
70 } 84 }
71 85
72 //-------------------------------------------------------------- 86 //--------------------------------------------------------------