summaryrefslogtreecommitdiffstats
path: root/Liaison/PluginManager.h
diff options
context:
space:
mode:
Diffstat (limited to 'Liaison/PluginManager.h')
-rw-r--r--Liaison/PluginManager.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/Liaison/PluginManager.h b/Liaison/PluginManager.h
new file mode 100644
index 0000000..beb7eab
--- /dev/null
+++ b/Liaison/PluginManager.h
@@ -0,0 +1,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