From 7a00574163029c0c2b649878c95d5acbd083564a Mon Sep 17 00:00:00 2001 From: "Roberto C. Sanchez" Date: Mon, 12 May 2014 08:21:30 -0400 Subject: Imported Upstream version 1.7.2+dfsg --- include/xzcomprs.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 include/xzcomprs.h (limited to 'include/xzcomprs.h') diff --git a/include/xzcomprs.h b/include/xzcomprs.h new file mode 100644 index 0000000..c468288 --- /dev/null +++ b/include/xzcomprs.h @@ -0,0 +1,45 @@ +/****************************************************************************** + * + * xzcomprs.h - XzCompress, a driver class that provides xz (LZMA2) + * compression + * + * $Id: xzcomprs.h 2850 2013-07-02 09:57:20Z 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 XZCOMPRS_H +#define XZCOMPRS_H + +#include + +#include + +SWORD_NAMESPACE_START + +class SWDLLEXPORT XzCompress : public SWCompress { + +protected: +public: + XzCompress(); + virtual ~XzCompress(); + + virtual void Encode(void); + virtual void Decode(void); +}; + +SWORD_NAMESPACE_END +#endif -- cgit v1.2.3