summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/rbzip.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/rbzip.h')
-rw-r--r--rbutil/rbutilqt/rbzip.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/rbutil/rbutilqt/rbzip.h b/rbutil/rbutilqt/rbzip.h
index c4f637500b..faf3ce7f4c 100644
--- a/rbutil/rbutilqt/rbzip.h
+++ b/rbutil/rbutilqt/rbzip.h
@@ -15,28 +15,28 @@
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#ifndef RBZIP_H 20#ifndef RBZIP_H
21#define RBZIP_H 21#define RBZIP_H
22 22
23#include <QtCore> 23#include <QtCore>
24#include "zip/zip.h" 24#include "zip/zip.h"
25 25
26#include "progressloggerinterface.h" 26#include "progressloggerinterface.h"
27 27
28class RbZip : public QObject, public Zip 28class RbZip : public QObject, public Zip
29{ 29{
30 Q_OBJECT 30 Q_OBJECT
31 public: 31 public:
32 Zip::ErrorCode createZip(QString zip,QString dir,ProgressloggerInterface *dp); 32 Zip::ErrorCode createZip(QString zip,QString dir,ProgressloggerInterface *dp);
33 33
34 virtual void progress(); 34 virtual void progress();
35 35
36 private: 36 private:
37 int m_curEntry; 37 int m_curEntry;
38 ProgressloggerInterface *m_logger; 38 ProgressloggerInterface *m_logger;
39}; 39};
40 40
41#endif 41#endif
42 42