summaryrefslogtreecommitdiffstats
path: root/fitsy/nrrdgzip.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2020-03-23 20:10:08 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2020-03-23 20:10:08 (GMT)
commit42027570f57b484414d4e87f19e9c26aed5bb71d (patch)
tree4ce4812d4a348d147cf3d388106272101ccffc2a /fitsy/nrrdgzip.h
parent1ea3cd7a5f436d8baa13fb53007773dcee637bd1 (diff)
downloadblt-42027570f57b484414d4e87f19e9c26aed5bb71d.zip
blt-42027570f57b484414d4e87f19e9c26aed5bb71d.tar.gz
blt-42027570f57b484414d4e87f19e9c26aed5bb71d.tar.bz2
libutil
Diffstat (limited to 'fitsy/nrrdgzip.h')
-rw-r--r--fitsy/nrrdgzip.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/fitsy/nrrdgzip.h b/fitsy/nrrdgzip.h
new file mode 100644
index 0000000..9cc955d
--- /dev/null
+++ b/fitsy/nrrdgzip.h
@@ -0,0 +1,19 @@
+// Copyright (C) 1999-2018
+// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
+// For conditions of distribution and use, see copyright notice in "copyright"
+
+#ifndef __fitsnrrdgzip_h__
+#define __fitsnrrdgzip_h__
+
+#include "nrrd.h"
+
+template<class T>
+class FitsNRRDGzipm : public FitsNRRDm<T> {
+ private:
+ int compressed(T*, char*, size_t);
+
+ public:
+ FitsNRRDGzipm(FitsFile*);
+};
+
+#endif