summaryrefslogtreecommitdiffstats
path: root/fitsy/rice.h
diff options
context:
space:
mode:
Diffstat (limited to 'fitsy/rice.h')
-rw-r--r--fitsy/rice.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/fitsy/rice.h b/fitsy/rice.h
new file mode 100644
index 0000000..46868ac
--- /dev/null
+++ b/fitsy/rice.h
@@ -0,0 +1,24 @@
+// Copyright (C) 1999-2018
+// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
+// For conditions of distribution and use, see copyright notice in "copyright"
+
+#ifndef __fitsrice_h__
+#define __fitsrice_h__
+
+#include "compress.h"
+
+template<class T>
+class FitsRicem : public FitsCompressm<T> {
+ protected:
+ int block_;
+ int bytepix_;
+ int noisebit_;
+
+ private:
+ int compressed(T*, char*, char*, int, int, int, int, int, int);
+
+ public:
+ FitsRicem(FitsFile*);
+};
+
+#endif