summaryrefslogtreecommitdiff
path: root/Protocols/QSBookmarkProvider.h
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-09-08 21:49:49 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-09-08 21:49:49 +0200
commit2d247ab64b84cf80d1beedb9521d7488bcb99f18 (patch)
tree6cfb3ec812446133d439a19a0fa07939f4d16648 /Protocols/QSBookmarkProvider.h
parent848982f156a86038438918e3a51cc0f04be9c78c (diff)
Apply formatting
Diffstat (limited to 'Protocols/QSBookmarkProvider.h')
-rw-r--r--Protocols/QSBookmarkProvider.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/Protocols/QSBookmarkProvider.h b/Protocols/QSBookmarkProvider.h
index 9131e3c..48e1417 100644
--- a/Protocols/QSBookmarkProvider.h
+++ b/Protocols/QSBookmarkProvider.h
@@ -5,8 +5,8 @@
// Protocol for social bookmark providers
//
-#import <Foundation/Foundation.h>
#import "SocialSite.h"
+#import <Foundation/Foundation.h>
@class QSObject;
@@ -16,18 +16,30 @@
/**
* Check if this provider can handle the given site configuration
*/
-- (BOOL)canHandleSite:(SocialSite)site username:(NSString *)username password:(NSString *)password host:(NSString *)host;
+- (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 identifier:(NSString *)identifier host:(NSString *)host includeTags:(BOOL)includeTags;
+- (NSArray *)fetchBookmarksForSite:(SocialSite)site
+ username:(NSString *)username
+ password:(NSString *)password
+ identifier:(NSString *)identifier
+ host:(NSString *)host
+ includeTags:(BOOL)includeTags;
@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;
+- (NSArray *)fetchBookmarksForTag:(NSString *)tag
+ site:(SocialSite)site
+ username:(NSString *)username
+ password:(NSString *)password
+ host:(NSString *)host;
@end