| 23 | |
| 24 | |
| 25 | PlaybackFileBoard::PlaybackFileBoard (struct BrainFlowInputParams params) |
| 26 | : Board ((int)BoardIds::PLAYBACK_FILE_BOARD, |
| 27 | params) // its a hack - set board_id for playback board here temporary and override it |
| 28 | // with master board id in prepare_session, board_id is protected and there is no |
| 29 | // api to get it so its ok |
| 30 | { |
| 31 | keep_alive = false; |
| 32 | loopback = false; |
| 33 | initialized = false; |
| 34 | use_new_timestamps = true; |
| 35 | pos_percentage.resize (3); |
| 36 | std::fill (pos_percentage.begin (), pos_percentage.end (), -1); |
| 37 | } |
| 38 | |
| 39 | PlaybackFileBoard::~PlaybackFileBoard () |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected