| 130 | |
| 131 | |
| 132 | int splinter_datatable_get_num_samples(splinter_obj_ptr datatable_ptr) |
| 133 | { |
| 134 | auto dataTable = get_datatable(datatable_ptr); |
| 135 | if (dataTable != nullptr) |
| 136 | { |
| 137 | return dataTable->getNumSamples(); |
| 138 | } |
| 139 | |
| 140 | return 0; |
| 141 | } |
| 142 | |
| 143 | void splinter_datatable_save(splinter_obj_ptr datatable_ptr, const char *filename) |
| 144 | { |
nothing calls this directly
no test coverage detected