| 88 | } |
| 89 | |
| 90 | string FolderReader::GetNextFilePath() { |
| 91 | if (_path_counter < _all_paths.size()) { |
| 92 | return _all_paths[_path_counter++]; |
| 93 | } |
| 94 | fprintf(stderr, "There are no more paths stored.\n"); |
| 95 | return ""; |
| 96 | } |
| 97 | |
| 98 | } // namespace depth_clustering |