File: GzipArchive.h

package info (click to toggle)
zipper.app 1.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 616 kB
  • sloc: objc: 3,829; makefile: 21; sh: 9
file content (11 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#import <Foundation/NSObject.h>
#import "Archive.h"

@interface GzipArchive : Archive
{
}

- (int)expandFiles:(NSArray *)files withPathInfo:(BOOL)usePathInfo toPath:(NSString *)path;
- (NSArray *)listContents;

@end