blob: 9d22d918d45716e5860698cc3e2e161e6b232916 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//
// QSDeliciousPlugIn_Source.h
// QSDeliciousPlugIn
//
// Created by Nicholas Jitkoff on 9/18/04.
// Copyright __MyCompanyName__ 2004. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <QSCore/QSCore.h>
#import "SocialSite.h"
#import "QSBookmarkProvider.h"
#import "QSBookmarkProviderFactory.h"
@interface QSDeliciousPlugIn_Source : QSObjectSource {
IBOutlet NSTextField *userField;
IBOutlet NSTextField *passField;
IBOutlet NSTextField *hostField;
}
@end
@interface QSCatalogEntry (OldStyleSourceSupport)
@property NSMutableDictionary *info;
- (id)objectForKey:(NSString *)key;
@end
|