aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-03-26 02:21:02 +0000
committerrowanbeentje <rowan@beent.je>2009-03-26 02:21:02 +0000
commit805aacd10db95bfe5db463a4a4e79efb8a9c8a95 (patch)
treececd9b50dc4a4b20f5b5fac4feac995ffba6d9fe /Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
parent1c0cd9c68a62dd2da96939946c93d78f95a4f793 (diff)
downloadsequelpro-805aacd10db95bfe5db463a4a4e79efb8a9c8a95.tar.gz
sequelpro-805aacd10db95bfe5db463a4a4e79efb8a9c8a95.tar.bz2
sequelpro-805aacd10db95bfe5db463a4a4e79efb8a9c8a95.zip
- Remove the old Sparkle framework version prior to updating
Diffstat (limited to 'Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h')
-rw-r--r--Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h b/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
deleted file mode 100644
index d0c0523e..00000000
--- a/Frameworks/Sparkle.framework/Versions/A/Headers/SUAppcastItem.h
+++ /dev/null
@@ -1,48 +0,0 @@
-//
-// SUAppcastItem.h
-// Sparkle
-//
-// Created by Andy Matuschak on 3/12/06.
-// Copyright 2006 Andy Matuschak. All rights reserved.
-//
-
-#ifndef SUAPPCASTITEM_H
-#define SUAPPCASTITEM_H
-
-
-@interface SUAppcastItem : NSObject {
- NSString *title;
- NSDate *date;
- NSString *description;
-
- NSURL *releaseNotesURL;
-
- NSString *DSASignature;
- NSString *minimumSystemVersion;
-
- NSURL *fileURL;
- NSString *versionString;
- NSString *displayVersionString;
-
- NSDictionary *propertiesDictionary;
-}
-
-// Initializes with data from a dictionary provided by the RSS class.
-- initWithDictionary:(NSDictionary *)dict;
-
-- (NSString *)title;
-- (NSString *)versionString;
-- (NSString *)displayVersionString;
-- (NSDate *)date;
-- (NSString *)description;
-- (NSURL *)releaseNotesURL;
-- (NSURL *)fileURL;
-- (NSString *)DSASignature;
-- (NSString *)minimumSystemVersion;
-
-// Returns the dictionary provided in initWithDictionary; this might be useful later for extensions.
-- (NSDictionary *)propertiesDictionary;
-
-@end
-
-#endif