summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/plio.h
blob: 8602cbd99fc9a039e39f5694160d1247f7c06c49 (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 __fitsplio_h__
#define __fitsplio_h__

#include "compress.h"

template<class T>
class FitsPliom : public FitsCompressm<T> {
 private:
  int compressed(T*, char*, char*, int, int, int, int, int, int);

 public:
  FitsPliom(FitsFile*);
};

#endif