summaryrefslogtreecommitdiff
path: root/include/bz2comprs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/bz2comprs.h')
-rw-r--r--include/bz2comprs.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/bz2comprs.h b/include/bz2comprs.h
new file mode 100644
index 0000000..c1e1648
--- /dev/null
+++ b/include/bz2comprs.h
@@ -0,0 +1,45 @@
+/******************************************************************************
+ *
+ * bz2comprs.h - Bzip2Compress, a driver class that provides bzip2
+ * compression (Burrows–Wheeler with Huffman coding)
+ *
+ * $Id: bz2comprs.h 2858 2013-07-08 03:08:10Z chrislit $
+ *
+ * Copyright 2000-2013 CrossWire Bible Society (http://www.crosswire.org)
+ * CrossWire Bible Society
+ * P. O. Box 2528
+ * Tempe, AZ 85280-2528
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation version 2.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ */
+
+#ifndef BZ2COMPRS_H
+#define BZ2COMPRS_H
+
+#include <swcomprs.h>
+
+#include <defs.h>
+
+SWORD_NAMESPACE_START
+
+class SWDLLEXPORT Bzip2Compress : public SWCompress {
+
+protected:
+public:
+ Bzip2Compress();
+ virtual ~Bzip2Compress();
+
+ virtual void Encode(void);
+ virtual void Decode(void);
+};
+
+SWORD_NAMESPACE_END
+#endif