~tcurdt/sparkle/devel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//
//  SUUnarchiver.m
//  Sparkle
//
//  Created by Andy Matuschak on 3/16/06.
//  Copyright 2006 Andy Matuschak. All rights reserved.
//


#import "Sparkle.h"
#import "SUUnarchiver.h"
#import "SUUnarchiver_Private.h"

@implementation SUUnarchiver

extern NSMutableArray *__unarchiverImplementations;

+ (SUUnarchiver *)unarchiverForURL:(NSURL *)URL
{
	NSEnumerator *implementationEnumerator = [[self _unarchiverImplementations] objectEnumerator];
	id current;
	while ((current = [implementationEnumerator nextObject]))
	{
		if ([current _canUnarchiveURL:URL])
			return [[[current alloc] _initWithURL:URL] autorelease];
	}
	return nil;
}

- (void)setDelegate:del
{
	delegate = del;
}

- (void)start
{
	// No-op
}

@end