Switching to Sparkle for updates
[printdrop.git] / Sparkle.framework / Versions / A / Headers / Sparkle.h
1 //
2 // Sparkle.h
3 // Sparkle
4 //
5 // Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07)
6 // Copyright 2006 Andy Matuschak. All rights reserved.
7 //
8
9 //
10 // Prefix header for all source files of the 'Sparkle' target in the 'Sparkle' project.
11 //
12
13 #ifndef SPARKLE_H
14 #define SPARKLE_H
15
16 #define SULocalizedString(key,comment) NSLocalizedStringFromTableInBundle(key, @"Sparkle", [NSBundle bundleForClass:[self class]], comment)
17 #define SUAbstractFail() NSAssert2(nil, @"Can't call %@ on an instance of %@; this is an abstract method!", __PRETTY_FUNCTION__, [self class]);
18
19 #ifdef __OBJC__
20 #import <Cocoa/Cocoa.h>
21 #import "SUConstants.h"
22 #endif
23
24
25 // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless
26 // there are name-space collisions) so we can list all of them to start with:
27
28 #import "NSBundle+SUAdditions.h"
29 #import "NSFileManager+Aliases.h"
30 #import "NSFileManager+Authentication.h"
31 #import "NSFileManager+Verification.h"
32 #import "NSWorkspace_RBAdditions.h"
33 #import "NSWorkspace+SystemVersion.h"
34
35 #import "NTSynchronousTask.h"
36
37 #import "SUAppcast.h"
38 #import "SUAppcastItem.h"
39 #import "SUAutomaticUpdateAlert.h"
40 #import "SUAutomaticUpdateDriver.h"
41 #import "SUBasicUpdateDriver.h"
42 #import "SUConstants.h"
43 #import "SUInstaller.h"
44 #import "SUProbingUpdateDriver.h"
45 #import "SUScheduledUpdateDriver.h"
46 #import "SUStandardVersionComparator.h"
47 #import "SUStatusController.h"
48 #import "SUSystemProfiler.h"
49 #import "SUUIBasedUpdateDriver.h"
50 #import "SUUnarchiver.h"
51 #import "SUUpdateAlert.h"
52 #import "SUUpdateDriver.h"
53 #import "SUUpdater.h"
54 #import "SUUpdatePermissionPrompt.h"
55 #import "SUUserInitiatedUpdateDriver.h"
56 #import "SUUserDefaults.h"
57 #import "SUVersionComparisonProtocol.h"
58 #import "SUWindowController.h"
59
60 #endif