~andymatuschak/sparkle/main

« back to all changes in this revision

Viewing changes to SUUnarchiver.h

  • Committer: andym
  • Date: 2007-07-10 04:55:25 UTC
  • Revision ID: andym@localhost-20070710045525-3awjris3of5zx0s0
Holy restructuring, batman! Watch out for falling folders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
//  SUUnarchiver.h
 
3
//  Sparkle
 
4
//
 
5
//  Created by Andy Matuschak on 3/16/06.
 
6
//  Copyright 2006 Andy Matuschak. All rights reserved.
 
7
//
 
8
 
 
9
#import <Cocoa/Cocoa.h>
 
10
 
 
11
 
 
12
@interface SUUnarchiver : NSObject {
 
13
        id delegate;
 
14
}
 
15
 
 
16
- (void)unarchivePath:(NSString *)path;
 
17
- (void)setDelegate:delegate;
 
18
 
 
19
@end
 
20
 
 
21
@interface NSObject (SUUnarchiverDelegate)
 
22
- (void)unarchiver:(SUUnarchiver *)unarchiver extractedLength:(long)length;
 
23
- (void)unarchiverDidFinish:(SUUnarchiver *)unarchiver;
 
24
- (void)unarchiverDidFail:(SUUnarchiver *)unarchiver;
 
25
@end