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