diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2012-12-19 16:27:34 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2012-12-19 16:27:34 (GMT) |
commit | 808823a7aaeb3e7a1f1610eef677d9ae81906ebc (patch) | |
tree | a14f14fdc345d99d62d4a9b1654158ca2473fa38 /src/lib/tng_io.c | |
parent | 698d34f4a1195f9fc591877bb933dfc269eda1e8 (diff) |
Removed two unimplemented functions from the API (reading and writing frame ranges).
Diffstat (limited to 'src/lib/tng_io.c')
-rw-r--r-- | src/lib/tng_io.c | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/lib/tng_io.c b/src/lib/tng_io.c index 066b1ad..99dfa5e 100644 --- a/src/lib/tng_io.c +++ b/src/lib/tng_io.c @@ -7996,41 +7996,6 @@ tng_function_status tng_particle_data_block_add(tng_trajectory_t tng_data, return(TNG_SUCCESS); } -tng_function_status tng_frame_read_interval(tng_trajectory_t tng_data, - const int64_t start_frame_nr, - const int64_t end_frame_nr, - const tng_hash_mode hash_mode) -{ - /* STUB */ -// tng_function_status stat; -// tng_trajectory_frame_set_t frame_set = -// &tng_data->current_trajectory_frame_set; - -// if(frame_set.frame_set_nr < 0) -// { -// stat = tng_frame_set_read_next(tng_data, hash_mode); -// if(stat != TNG_SUCCESS) -// { -// printf("Error reading frame set. %s: %d\n", __FILE__, __LINE__); -// return(stat); -// } -// } - - - - return(TNG_SUCCESS); -} - -tng_function_status tng_frame_write_interval - (tng_trajectory_t tng_data, - const int64_t start_frame_nr, - const int64_t end_frame_nr, - const tng_hash_mode hash_mode) -{ - /* STUB */ - return(TNG_SUCCESS); -} - tng_function_status tng_data_values_free(union data_values **values, const int64_t n_frames, const int64_t n_values_per_frame, |