From a5e25cc05e5e33e114331cc826211c89adbcfa6a Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 8 Sep 2025 10:38:39 +0200 Subject: Reorganize code, WIP save for tag handling --- QSBookmarkProvider.h | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 QSBookmarkProvider.h (limited to 'QSBookmarkProvider.h') diff --git a/QSBookmarkProvider.h b/QSBookmarkProvider.h deleted file mode 100644 index 735ae82..0000000 --- a/QSBookmarkProvider.h +++ /dev/null @@ -1,48 +0,0 @@ -// -// QSBookmarkProvider.h -// QSDeliciousPlugIn -// -// Protocol for social bookmark providers -// - -#import -#import "SocialSite.h" - -@class QSObject; - -@protocol QSBookmarkProvider - -@required -/** - * Check if this provider can handle the given site configuration - */ -- (BOOL)canHandleSite:(SocialSite)site username:(NSString *)username password:(NSString *)password host:(NSString *)host; - -/** - * Fetch bookmarks for the given configuration - * Returns an NSArray of QSObject instances - */ -- (NSArray *)fetchBookmarksForSite:(SocialSite)site username:(NSString *)username password:(NSString *)password host:(NSString *)host includeTags:(BOOL)includeTags; - -/** - * Get the supported site for this provider - */ -- (SocialSite)supportedSite; - -/** - * Get display name for this provider - */ -- (NSString *)providerName; - -@optional -/** - * Get bookmarks for a specific tag (used for child loading) - */ -- (NSArray *)fetchBookmarksForTag:(NSString *)tag site:(SocialSite)site username:(NSString *)username password:(NSString *)password host:(NSString *)host; - -/** - * Get the tag URL type identifier for this provider - */ -- (NSString *)tagURLType; - -@end \ No newline at end of file -- cgit