summaryrefslogtreecommitdiffstats
path: root/fitsy/outfits.h
diff options
context:
space:
mode:
Diffstat (limited to 'fitsy/outfits.h')
-rw-r--r--fitsy/outfits.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/fitsy/outfits.h b/fitsy/outfits.h
new file mode 100644
index 0000000..652f8bb
--- /dev/null
+++ b/fitsy/outfits.h
@@ -0,0 +1,27 @@
+// Copyright (C) 1999-2018
+// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
+// For conditions of distribution and use, see copyright notice in "copyright"
+
+#ifndef __outfits_h__
+#define __outfits_h__
+
+#include <stdlib.h>
+
+#define B1KB 1024
+#define B4KB 4096
+#define B1MB 1048576
+
+class OutFitsStream {
+ protected:
+ int valid_;
+
+ public:
+ OutFitsStream();
+ virtual ~OutFitsStream();
+
+ virtual int write(char*, size_t) =0;
+ int writeSwap(char*, int, int);
+ int valid() {return valid_;}
+};
+
+#endif