Sparkle  2.0.0
A software update framework for macOS
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 #ifndef SPARKLE_H
10 #define SPARKLE_H
11 
12 // This list should include the shared headers. It doesn't matter if some of them aren't shared (unless
13 // there are name-space collisions) so we can list all of them to start with:
14 
15 #import <Sparkle/SUExport.h>
16 #import <Sparkle/SUAppcast.h>
17 #import <Sparkle/SUAppcastItem.h>
18 #import <Sparkle/SUStandardVersionComparator.h>
19 #import <Sparkle/SPUUpdater.h>
20 #import <Sparkle/SPUUpdaterDelegate.h>
21 #import <Sparkle/SPUUpdaterSettings.h>
22 #import <Sparkle/SUVersionComparisonProtocol.h>
23 #import <Sparkle/SUVersionDisplayProtocol.h>
24 #import <Sparkle/SUErrors.h>
25 #import <Sparkle/SPUUpdatePermissionRequest.h>
26 #import <Sparkle/SUUpdatePermissionResponse.h>
27 #import <Sparkle/SPUUserDriver.h>
28 #import <Sparkle/SPUDownloadData.h>
29 
30 // UI bits
31 #import <Sparkle/SPUStandardUpdaterController.h>
32 #import <Sparkle/SPUStandardUserDriver.h>
33 #import <Sparkle/SPUStandardUserDriverDelegate.h>
34 
35 // Deprecated bits
36 #import <Sparkle/SUUpdater.h>
37 #import <Sparkle/SUUpdaterDelegate.h>
38 
39 #endif