| 1 | #include "frameplaybackobject.h" |
| 2 | |
| 3 | FramePlaybackObject::FramePlaybackObject() |
| 4 | { |
| 5 | mThread_p = new QThread(); |
| 6 | |
| 7 | currentPosition = 0; |
| 8 | playbackInterval = 1; |
| 9 | playbackBurst = 1; |
| 10 | statusCounter = 0; |
| 11 | numBuses = 0; |
| 12 | playbackActive = false; |
| 13 | playbackForward = true; |
| 14 | useOrigTiming = false; |
| 15 | whichBusSend = 0; |
| 16 | currentSeqItem = nullptr; |
| 17 | } |
| 18 | |
| 19 | FramePlaybackObject::~FramePlaybackObject() |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected