diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 18:59:29 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 18:59:29 (GMT) |
commit | d4d595fa7fb12903db9227d33d48b2b00120dbd1 (patch) | |
tree | 7d18365de0d6d1b29399b6a17c7eb01c2eb3ed49 /tksao/fitsy++/gzip.h | |
parent | 949f96e29bfe0bd8710d775ce220e597064e2589 (diff) | |
download | blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.zip blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.gz blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.bz2 |
Initial commit
Diffstat (limited to 'tksao/fitsy++/gzip.h')
-rw-r--r-- | tksao/fitsy++/gzip.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tksao/fitsy++/gzip.h b/tksao/fitsy++/gzip.h new file mode 100644 index 0000000..6769155 --- /dev/null +++ b/tksao/fitsy++/gzip.h @@ -0,0 +1,19 @@ +// Copyright (C) 1999-2016 +// Smithsonian Astrophysical Observatory, Cambridge, MA, USA +// For conditions of distribution and use, see copyright notice in "copyright" + +#ifndef __fitsgzip_h__ +#define __fitsgzip_h__ + +#include "compress.h" + +template<class T> +class FitsGzipm : public FitsCompressm<T> { + private: + int compressed(T*, char*, char*, int, int, int, int, int, int); + + public: + FitsGzipm(FitsFile*); +}; + +#endif |