diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-09-18 07:22:43 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-09-18 07:22:43 (GMT) |
commit | 11f52bc87983b69eb479346fda389cb0b83cd6ea (patch) | |
tree | 0463e2ea0cc2efca6c117b7be0cb59cb21d809a1 /include | |
parent | a91a64c316cc800a0a9781537a59b2ca9fe79332 (diff) |
Merge the two data block structs into one.
Change-Id: If75c9301e02bf7da888fb273bb8e3ba7ec516472
Diffstat (limited to 'include')
-rw-r--r-- | include/tng/tng_io_fwd.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/tng/tng_io_fwd.h b/include/tng/tng_io_fwd.h index 8b63a9a..68bcafd 100644 --- a/include/tng/tng_io_fwd.h +++ b/include/tng/tng_io_fwd.h @@ -31,9 +31,7 @@ typedef struct tng_gen_block *tng_gen_block_t; typedef struct tng_particle_mapping *tng_particle_mapping_t; /** A pointer to a structure containing frame set information. */ typedef struct tng_trajectory_frame_set *tng_trajectory_frame_set_t; -/** A pointer to a particle data container. */ -typedef struct tng_particle_data *tng_particle_data_t; -/** A pointer to a non-particle data container. */ -typedef struct tng_non_particle_data *tng_non_particle_data_t; +/** A pointer to a data container. */ +typedef struct tng_data *tng_data_t; #endif |