| 79 | */ |
| 80 | |
| 81 | class CsPerfThreadMsg_Play : public CsoundPerformanceThreadMessage { |
| 82 | public: |
| 83 | CsPerfThreadMsg_Play(CsoundPerformanceThread *pt) |
| 84 | : CsoundPerformanceThreadMessage(pt) {} |
| 85 | int run() |
| 86 | { |
| 87 | SetPaused(0); |
| 88 | return 0; |
| 89 | } |
| 90 | ~CsPerfThreadMsg_Play() {} |
| 91 | }; |
| 92 | |
| 93 | /** |
| 94 | * Pause performance |
nothing calls this directly
no outgoing calls
no test coverage detected