blob: beb7eab57f5218ea2ab37feec5ee1d09795b5acc (
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
26
27
|
//
// PluginManager.h
// Liaison
//
// Created by Brian Cully on Thu May 15 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
@interface PluginManager : NSObject
{
NSMutableArray *theFileStorePlugins;
NSMutableArray *theBrowserPlugins;
NSMutableArray *theInspectorPlugins;
}
+ (PluginManager *)defaultManager;
- (void)scanForPlugins;
@property (retain) NSMutableArray *theFileStorePlugins;
@property (retain) NSMutableArray *theInspectorPlugins;
@property (retain) NSMutableArray *theBrowserPlugins;
@end
@interface PluginManager (Accessors)
- (NSArray *)fileStorePlugins;
- (NSArray *)browserPlugins;
- (NSArray *)inspectorPlugins;
@end
|