2020-11-22 23:16:34 -03:00
|
|
|
//
|
|
|
|
// Sparkle.h
|
|
|
|
// Sparkle
|
|
|
|
//
|
|
|
|
// Created by Andy Matuschak on 3/16/06. (Modified by CDHW on 23/12/07)
|
|
|
|
// Copyright 2006 Andy Matuschak. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SPARKLE_H
|
|
|
|
#define SPARKLE_H
|
|
|
|
|
|
|
|
// This list should include the shared headers. It doesn't matter if some of them aren't shared (unless
|
|
|
|
// there are name-space collisions) so we can list all of them to start with:
|
|
|
|
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
// Do not use <> style includes since 2.x has two frameworks that need to work: Sparkle and SparkleCore
|
|
|
|
#pragma clang diagnostic ignored "-Wquoted-include-in-framework-header"
|
|
|
|
|
2021-02-28 16:40:16 -03:00
|
|
|
#import "SUExport.h"
|
2020-11-22 23:16:34 -03:00
|
|
|
#import "SUAppcast.h"
|
|
|
|
#import "SUAppcastItem.h"
|
|
|
|
#import "SUStandardVersionComparator.h"
|
2021-02-28 16:40:16 -03:00
|
|
|
#import "SPUUpdater.h"
|
|
|
|
#import "SPUUpdaterDelegate.h"
|
|
|
|
#import "SPUUpdaterSettings.h"
|
|
|
|
#import "SPUStandardUpdaterController.h"
|
2020-11-22 23:16:34 -03:00
|
|
|
#import "SUVersionComparisonProtocol.h"
|
|
|
|
#import "SUVersionDisplayProtocol.h"
|
|
|
|
#import "SUErrors.h"
|
2021-02-28 16:40:16 -03:00
|
|
|
#import "SPUUpdatePermissionRequest.h"
|
|
|
|
#import "SUUpdatePermissionResponse.h"
|
|
|
|
#import "SPUUserDriver.h"
|
|
|
|
#import "SPUStandardUserDriver.h"
|
|
|
|
#import "SPUStandardUserDriverDelegate.h"
|
|
|
|
#import "SPUUserDriverCoreComponent.h"
|
2020-11-22 23:16:34 -03:00
|
|
|
#import "SPUDownloadData.h"
|
2021-02-28 16:40:16 -03:00
|
|
|
|
|
|
|
#import "SUUpdater.h" // deprecated
|
|
|
|
#import "SUUpdaterDelegate.h" // deprecated
|
2020-11-22 23:16:34 -03:00
|
|
|
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
|
|
|
|
#endif
|