1 /*
2 
3   ZipArchive.h
4   Zipper
5 
6   Copyright (C) 2012 Free Software Foundation, Inc
7 
8   Authors: Dirk Olmes <dirk@xanthippe.ping.de>
9            Riccardo Mottola <rm@gnu.org>
10 
11   This application is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by the Free
13   Software Foundation; either version 2 of the License, or (at your option)
14   any later version.
15 
16   This program is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
18   or FITNESS FOR A PARTICULAR PURPOSE.
19   See the GNU General Public License for more details
20 
21  */
22 
23 #import <Foundation/NSObject.h>
24 #import "Archive.h"
25 
26 @interface ZipArchive : Archive
27 {
28 }
29 
30 - (int)expandFiles:(NSArray *)files withPathInfo:(BOOL)usePathInfo toPath:(NSString *)path;
31 - (NSArray *)listContents;
32 
33 + (void)createArchive:(NSString *)archivePath withFiles:(NSArray *)filenames archiveType:(ArchiveType) archiveType;
34 
35 @end
36