Initial commit.
[jspeed] / src / zipreader.h
diff --git a/src/zipreader.h b/src/zipreader.h
new file mode 100644 (file)
index 0000000..c510b7f
--- /dev/null
@@ -0,0 +1,44 @@
+/*
+ * This file is part of jSpeed.
+ *
+ * jSpeed 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, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * jSpeed 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with jSpeed.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef ZIPREADER_H
+#define ZIPREADER_H
+
+#include "reader.h"
+#include "zip.h"
+
+class QString;
+class QByteArray;
+
+class ZipReader : public Reader
+{
+public:
+    ZipReader(QString const& filename);
+    bool open();
+    bool readFile(QString const& filename, QByteArray& data);
+    bool fileExists(QString const& filename) const;
+    bool close();
+    QString const& errorString() const;
+
+private:
+    QString filename_;
+    zip* zip_;
+    QString error_;
+};
+
+#endif