summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/nrrdgzip.h
blob: ce9e53ddc4804d3d0bb9f225a820778a2fcd6108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 1999-2016
// 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