| 368 | } |
| 369 | |
| 370 | int BoardShim::get_num_rows (int board_id, int preset) |
| 371 | { |
| 372 | int num_rows = 0; |
| 373 | int res = ::get_num_rows (board_id, preset, &num_rows); |
| 374 | if (res != (int)BrainFlowExitCodes::STATUS_OK) |
| 375 | { |
| 376 | throw BrainFlowException ("failed to get board info", res); |
| 377 | } |
| 378 | return num_rows; |
| 379 | } |
| 380 | |
| 381 | std::vector<std::string> BoardShim::get_eeg_names (int board_id, int preset) |
| 382 | { |
nothing calls this directly
no test coverage detected