PluginController now uses the decoder if a properties reader class is not found. PropertiesReaders should still be created if performance can be improved if code is only reading properties.
22 lines
387 B
Objective-C
22 lines
387 B
Objective-C
//
|
|
// QuicktimePlugin.m
|
|
// Quicktime
|
|
//
|
|
// Created by Vincent Spader on 6/10/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "QuicktimePlugin.h"
|
|
#import "QuicktimeDecoder.h"
|
|
|
|
@implementation QuicktimePlugin
|
|
|
|
+ (NSDictionary *)pluginInfo
|
|
{
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
|
kCogDecoder, [QuicktimeDecoder className],
|
|
nil
|
|
];
|
|
}
|
|
|
|
@end
|