summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/order.h
blob: a2aa6049827f353f53de0ae2d533f104779bff94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 1999-2016
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"

#ifndef __fitsorder_h__
#define __fitsorder_h__

#include "file.h"

class FitsOrder : public FitsFile {
 public:
  FitsOrder(FitsFile*, FitsHead*, char*, size_t);
  ~FitsOrder();
};

class FitsOrderNext : public FitsFile {
public:
  FitsOrderNext(FitsFile* prev);
};

#endif