summaryrefslogtreecommitdiff
path: root/hw/xquartz/bundle/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h
diff options
context:
space:
mode:
Diffstat (limited to 'hw/xquartz/bundle/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h')
-rw-r--r--hw/xquartz/bundle/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/hw/xquartz/bundle/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h b/hw/xquartz/bundle/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h
new file mode 100644
index 000000000..da111c158
--- /dev/null
+++ b/hw/xquartz/bundle/Sparkle.framework/Versions/A/Headers/SUUnarchiver.h
@@ -0,0 +1,25 @@
+//
+// SUUnarchiver.h
+// Sparkle
+//
+// Created by Andy Matuschak on 3/16/06.
+// Copyright 2006 Andy Matuschak. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface SUUnarchiver : NSObject {
+ id delegate;
+}
+
+- (void)unarchivePath:(NSString *)path;
+- (void)setDelegate:delegate;
+
+@end
+
+@interface NSObject (SUUnarchiverDelegate)
+- (void)unarchiver:(SUUnarchiver *)unarchiver extractedLength:(long)length;
+- (void)unarchiverDidFinish:(SUUnarchiver *)unarchiver;
+- (void)unarchiverDidFail:(SUUnarchiver *)unarchiver;
+@end \ No newline at end of file