diff options
author | Jan Huwald <jh@sotun.de> | 2014-01-27 13:57:37 (GMT) |
---|---|---|
committer | Jan Huwald <jh@sotun.de> | 2016-01-11 12:02:26 (GMT) |
commit | b7bd44ee623b64af25aa8f629ae7e22b00a2142c (patch) | |
tree | 7ca9b1eb7d75323f384e4d3641113f4140c9a3ca /include | |
parent | 8e239a6b59d8ff11979ca8557be9b79e2c15f83a (diff) |
Almost all of this code has been created by Stephan Richter
<s.richter@keawe.de>. Only minor changes and this squashed commit have
been prepared by Jan Huwald <jh@sotun.de>.
Diffstat (limited to 'include')
-rw-r--r-- | include/tng/tng_io.h | 6 | ||||
-rw-r--r-- | include/tng/tng_io.hpp | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/include/tng/tng_io.h b/include/tng/tng_io.h index 668acbe..cb43891 100644 --- a/include/tng/tng_io.h +++ b/include/tng/tng_io.h @@ -399,7 +399,8 @@ typedef enum {TNG_BIG_ENDIAN_64, typedef enum {TNG_UNCOMPRESSED, TNG_XTC_COMPRESSION, TNG_TNG_COMPRESSION, - TNG_GZIP_COMPRESSION} tng_compression; + TNG_GZIP_COMPRESSION, + TNG_HRTC_COMPRESSION} tng_compression; /** Hash types */ typedef enum {TNG_NO_HASH, @@ -407,7 +408,8 @@ typedef enum {TNG_NO_HASH, TNG_SHA256} tng_hash_type; /** Non trajectory blocks come before the first frame set block */ -typedef enum {TNG_NON_TRAJECTORY_BLOCK, TNG_TRAJECTORY_BLOCK} tng_block_type; +typedef enum {TNG_NON_TRAJECTORY_BLOCK, + TNG_TRAJECTORY_BLOCK} tng_block_type; /** @defgroup def1 Standard non-trajectory blocks * Block IDs of standard non-trajectory blocks. diff --git a/include/tng/tng_io.hpp b/include/tng/tng_io.hpp index 12172e5..0983570 100644 --- a/include/tng/tng_io.hpp +++ b/include/tng/tng_io.hpp @@ -53,7 +53,7 @@ public: Trajectory(Trajectory * src) { status = tng_trajectory_init_from_src(traj,&src->traj); } - //! Detructor + //! Destructor ~Trajectory() { status = tng_trajectory_destroy(&traj); } |