summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/photo.h
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/fitsy++/photo.h')
-rw-r--r--tksao/fitsy++/photo.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/tksao/fitsy++/photo.h b/tksao/fitsy++/photo.h
new file mode 100644
index 0000000..a225e6b
--- /dev/null
+++ b/tksao/fitsy++/photo.h
@@ -0,0 +1,31 @@
+// Copyright (C) 1999-2016
+// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
+// For conditions of distribution and use, see copyright notice in "copyright"
+
+#ifndef __fitsphoto_h__
+#define __fitsphoto_h__
+
+#include <tcl.h>
+
+#include "vector.h"
+#include "file.h"
+
+class FitsPhoto : public FitsFile {
+ public:
+ FitsPhoto(Tcl_Interp* interp, const char*);
+ ~FitsPhoto();
+};
+
+class FitsPhotoCube : public FitsFile {
+ public:
+ FitsPhotoCube(Tcl_Interp* interp, const char*);
+ ~FitsPhotoCube();
+};
+
+class FitsPhotoCubeNext : public FitsFile {
+ public:
+ FitsPhotoCubeNext(FitsFile*);
+};
+
+#endif
+