diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 18:59:29 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-10-27 18:59:29 (GMT) |
commit | d4d595fa7fb12903db9227d33d48b2b00120dbd1 (patch) | |
tree | 7d18365de0d6d1b29399b6a17c7eb01c2eb3ed49 /tksao/fitsy++/allocgz.h | |
parent | 949f96e29bfe0bd8710d775ce220e597064e2589 (diff) | |
download | blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.zip blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.gz blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.bz2 |
Initial commit
Diffstat (limited to 'tksao/fitsy++/allocgz.h')
-rw-r--r-- | tksao/fitsy++/allocgz.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/tksao/fitsy++/allocgz.h b/tksao/fitsy++/allocgz.h new file mode 100644 index 0000000..c2b6e6e --- /dev/null +++ b/tksao/fitsy++/allocgz.h @@ -0,0 +1,46 @@ +// Copyright (C) 1999-2016 +// Smithsonian Astrophysical Observatory, Cambridge, MA, USA +// For conditions of distribution and use, see copyright notice in "copyright" + +#ifndef __fitsallocgz_h__ +#define __fitsallocgz_h__ + +#include "strm.h" +#include "zlib.h" + +class FitsAllocGZ : public virtual FitsStream<gzFile> { +public: + FitsAllocGZ(const char*); + virtual ~FitsAllocGZ() {} +}; + +class FitsFitsAllocGZ : public FitsAllocGZ, public FitsFitsStream<gzFile> { +public: + FitsFitsAllocGZ(const char* fn, ScanMode mode, FlushMode flush) + : FitsAllocGZ(fn), FitsFitsStream<gzFile>(mode, flush) {} +}; + +class FitsFitsNextAllocGZ : public FitsFitsNextStream<gzFile> { +public: + FitsFitsNextAllocGZ(FitsFile* prev) : FitsFitsNextStream<gzFile>(prev) {} +}; + +class FitsArrAllocGZ : public FitsAllocGZ, FitsArrStream<gzFile> { +public: + FitsArrAllocGZ(const char* fn, FlushMode flush) + : FitsAllocGZ(fn), FitsArrStream<gzFile>(flush) {} +}; + +class FitsMosaicAllocGZ : public FitsAllocGZ, FitsMosaicStream<gzFile> { +public: + FitsMosaicAllocGZ(const char* fn, FlushMode flush) + : FitsAllocGZ(fn), FitsMosaicStream<gzFile>(flush) {} +}; + +class FitsMosaicNextAllocGZ : public FitsMosaicNextStream<gzFile> { +public: + FitsMosaicNextAllocGZ(FitsFile* prev, FlushMode flush) + : FitsMosaicNextStream<gzFile>(prev, flush) {} +}; + +#endif |