diff options
Diffstat (limited to 'fitsy/hcompress.h')
-rw-r--r-- | fitsy/hcompress.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/fitsy/hcompress.h b/fitsy/hcompress.h new file mode 100644 index 0000000..4b95aca --- /dev/null +++ b/fitsy/hcompress.h @@ -0,0 +1,22 @@ +// Copyright (C) 1999-2018 +// Smithsonian Astrophysical Observatory, Cambridge, MA, USA +// For conditions of distribution and use, see copyright notice in "copyright" + +#ifndef __fitshcompress_h__ +#define __fitshcompress_h__ + +#include "compress.h" + +template<class T> +class FitsHcompressm : public FitsCompressm<T> { + protected: + int smooth_; + + private: + int compressed(T*, char*, char*, int, int, int, int, int, int); + + public: + FitsHcompressm(FitsFile*); +}; + +#endif |