diff options
Diffstat (limited to 'include/tng_io.h')
-rw-r--r-- | include/tng_io.h | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index 58b9235..3a5aa37 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -275,7 +275,7 @@ #include <stdlib.h> #include <string.h> #include <assert.h> - +#include "tng_io_fwd.h" #ifdef USE_STD_INTTYPES_H #include <inttypes.h> @@ -503,30 +503,6 @@ struct tng_trajectory_frame_set; struct tng_particle_data; struct tng_non_particle_data; -/** A pointer to the main trajectory data storage. */ -typedef struct tng_trajectory *tng_trajectory_t; -/** A pointer to a molecule description. */ -typedef struct tng_molecule *tng_molecule_t; -/** A pointer to a molecular chain description. */ -typedef struct tng_chain *tng_chain_t; -/** A pointer to a molecular residue description. */ -typedef struct tng_residue *tng_residue_t; -/** A pointer to a molecular atom description. */ -typedef struct tng_atom *tng_atom_t; -/** A pointer to a bond between two atoms. */ -typedef struct tng_bond *tng_bond_t; -/** A pointer to a structure containing data common to all trajectory blocks, - * such as header and contents. */ -typedef struct tng_gen_block *tng_gen_block_t; -/** A pointer to particle mapping information. */ -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; - /** Data can be either double, float, int or a string */ union data_values { double d; |