38 lines
912 B
Objective-C
38 lines
912 B
Objective-C
/* PluginController */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Plugin.h"
|
|
|
|
//Singleton
|
|
@interface PluginController : NSObject <CogPluginController>
|
|
{
|
|
NSMutableDictionary *sources;
|
|
NSMutableDictionary *containers;
|
|
NSMutableDictionary *decoders;
|
|
NSMutableDictionary *metadataReaders;
|
|
NSMutableDictionary *propertiesReaders;
|
|
}
|
|
|
|
+ (PluginController *)sharedPluginController; //Use this to get the instance.
|
|
|
|
- (void)setup;
|
|
- (void)printPluginInfo;
|
|
|
|
- (void)loadPlugins;
|
|
- (void)loadPluginsAtPath:(NSString *)path;
|
|
|
|
- (void)setupSource:(NSString *)className;
|
|
- (void)setupContainer:(NSString *)className;
|
|
- (void)setupDecoder:(NSString *)className;
|
|
- (void)setupMetadataReader:(NSString *)className;
|
|
- (void)setupPropertiesReader:(NSString *)className;
|
|
|
|
- (NSDictionary *)sources;
|
|
- (NSDictionary *)containers;
|
|
- (NSDictionary *)decoders;
|
|
- (NSDictionary *)metadataReaders;
|
|
- (NSDictionary *)propertiesReaders;
|
|
|
|
@end
|