34ddd87bad3d9233b6c5fc0e2d2a5b50ab5f1814
[alexxy/gromacs.git] / src / external / tng_io / include / tng_io_fwd.h
1 /* This code is part of the tng binary trajectory format.
2  *
3  *                      VERSION 1.5
4  *
5  * Written by Magnus Lundborg
6  * Copyright (c) 2012-2013, The GROMACS development team.
7  * Check out http://www.gromacs.org for more information.
8  *
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the Revised BSD License.
12  */
13
14 #ifndef TNG_IO_FWD_H
15 #define TNG_IO_FWD_H     1
16
17 /** A pointer to the main trajectory data storage. */
18 typedef struct tng_trajectory *tng_trajectory_t;
19 /** A pointer to a molecule description. */
20 typedef struct tng_molecule *tng_molecule_t;
21 /** A pointer to a molecular chain description. */
22 typedef struct tng_chain *tng_chain_t;
23 /** A pointer to a molecular residue description. */
24 typedef struct tng_residue *tng_residue_t;
25 /** A pointer to a molecular atom description. */
26 typedef struct tng_atom *tng_atom_t;
27 /** A pointer to a bond between two atoms. */
28 typedef struct tng_bond *tng_bond_t;
29 /** A pointer to a structure containing data common to all trajectory blocks,
30  *  such as header and contents. */
31 typedef struct tng_gen_block *tng_gen_block_t;
32 /** A pointer to particle mapping information. */
33 typedef struct tng_particle_mapping *tng_particle_mapping_t;
34 /** A pointer to a structure containing frame set information. */
35 typedef struct tng_trajectory_frame_set *tng_trajectory_frame_set_t;
36 /** A pointer to a particle data container. */
37 typedef struct tng_particle_data *tng_particle_data_t;
38 /** A pointer to a non-particle data container. */
39 typedef struct tng_non_particle_data *tng_non_particle_data_t;
40
41 #endif