2015-04-13 07:39:24 +00:00
|
|
|
//
|
|
|
|
// CogPluginMulti.h
|
|
|
|
// CogAudio
|
|
|
|
//
|
|
|
|
// Created by Christopher Snowhill on 10/21/13.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "Plugin.h"
|
2022-02-07 05:49:27 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2015-04-13 07:39:24 +00:00
|
|
|
|
|
|
|
@interface CogDecoderMulti : NSObject <CogDecoder> {
|
2022-02-07 05:49:27 +00:00
|
|
|
NSArray *theDecoders;
|
|
|
|
id<CogDecoder> theDecoder;
|
2022-06-17 01:16:09 +00:00
|
|
|
BOOL observersAdded;
|
2015-04-13 07:39:24 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
- (id)initWithDecoders:(NSArray *)decoders;
|
2015-04-13 07:39:24 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface CogContainerMulti : NSObject {
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSArray *)urlsForContainerURL:(NSURL *)url containers:(NSArray *)containers;
|
2022-06-26 09:47:49 +00:00
|
|
|
+ (NSArray *)dependencyUrlsForContainerURL:(NSURL *)url containers:(NSArray *)containers;
|
2015-04-13 07:39:24 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface CogMetadataReaderMulti : NSObject {
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSDictionary *)metadataForURL:(NSURL *)url readers:(NSArray *)readers;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface CogPropertiesReaderMulti : NSObject {
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSDictionary *)propertiesForSource:(id<CogSource>)source readers:(NSArray *)readers;
|
|
|
|
|
|
|
|
@end
|