summaryrefslogtreecommitdiffstats
path: root/tksao/fitsy++/photo.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++/photo.h
parent949f96e29bfe0bd8710d775ce220e597064e2589 (diff)
downloadblt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.zip
blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.gz
blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.bz2
Initial commit
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
+