diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/tng_io.c | 7 | ||||
-rw-r--r-- | src/lib/tng_io.h | 12 |
2 files changed, 0 insertions, 19 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index c9c8658..ae581af 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -7446,13 +7446,6 @@ tng_function_status tng_particle_data_block_add(tng_trajectory_t tng_data, return(TNG_SUCCESS); } -tng_function_status tng_frame_set_read_nr(tng_trajectory_t tng_data, - int64_t frame_set_nr) -{ - /* STUB */ - return(TNG_SUCCESS); -} - tng_function_status tng_frame_read_interval(tng_trajectory_t tng_data, int64_t start_frame_nr, int64_t end_frame_nr) diff --git a/src/lib/tng_io.h b/src/lib/tng_io.h index b6f6ddf..b68e11d 100644 --- a/src/lib/tng_io.h +++ b/src/lib/tng_io.h @@ -1025,18 +1025,6 @@ tng_function_status tng_particle_data_block_add(tng_trajectory_t tng_data, /** - * @brief Read a requested frame set. - * @details Not implemented yet! - * @param tng_data is a trajectory data container. - * tng_data->current_trajectory_frame_set will be the read frame set. - * @param frame_set_nr is the number of the frame set to return (starting from 0). - * @return TNG_SUCCESS (0) if successful, TNG_FAILURE (1) if a minor error - * has occurred or TNG_CRITICAL (2) if a major error has occured. - */ -tng_function_status tng_frame_set_read_nr(tng_trajectory_t tng_data, - int64_t frame_set_nr); - -/** * @brief Read a number of consecutive trajectory frames from the input_file of * tng_data. * @details Not implemented yet! |