25 lines
489 B
Objective-C
25 lines
489 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"
|
|
#import "QuicktimePropertiesReader.h"
|
|
|
|
@implementation QuicktimePlugin
|
|
|
|
+ (NSDictionary *)pluginInfo
|
|
{
|
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
|
kCogDecoder, [QuicktimeDecoder className],
|
|
kCogPropertiesReader, [QuicktimePropertiesReader className],
|
|
nil
|
|
];
|
|
}
|
|
|
|
@end
|