24 lines
451 B
Mathematica
24 lines
451 B
Mathematica
|
//
|
||
|
// CueSheetPlugin.m
|
||
|
// CueSheet
|
||
|
//
|
||
|
// Created by Zaphod Beeblebrox on 10/8/07.
|
||
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "CueSheetPlugin.h"
|
||
|
|
||
|
#import "CueSheetContainer.h"
|
||
|
#import "CueSheetDecoder.h"
|
||
|
|
||
|
@implementation CueSheetPlugin
|
||
|
|
||
|
+ (NSDictionary *)pluginInfo
|
||
|
{
|
||
|
return [NSDictionary dictionaryWithObjectsAndKeys:
|
||
|
kCogContainer, [CueSheetContainer className],
|
||
|
kCogDecoder, [CueSheetDecoder className]];
|
||
|
}
|
||
|
|
||
|
@end
|