summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/order.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 18:59:29 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 18:59:29 (GMT)
commitd4d595fa7fb12903db9227d33d48b2b00120dbd1 (patch)
tree7d18365de0d6d1b29399b6a17c7eb01c2eb3ed49 /tksao/fitsy++/order.h
parent949f96e29bfe0bd8710d775ce220e597064e2589 (diff)
downloadblt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.zip
blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.gz
blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.bz2
Initial commit
Diffstat (limited to 'tksao/fitsy++/order.h')
-rw-r--r--tksao/fitsy++/order.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tksao/fitsy++/order.h b/tksao/fitsy++/order.h
new file mode 100644
index 0000000..a2aa604
--- /dev/null
+++ b/tksao/fitsy++/order.h
@@ -0,0 +1,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