22 lines
395 B
Objective-C
22 lines
395 B
Objective-C
//
|
|
// AudioContainer.m
|
|
// CogAudio
|
|
//
|
|
// Created by Zaphod Beeblebrox on 10/8/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import "AudioContainer.h"
|
|
|
|
#import "PluginController.h"
|
|
|
|
@implementation AudioContainer
|
|
|
|
+ (NSArray *)urlsForContainerURL:(NSURL *)url {
|
|
@autoreleasepool {
|
|
return [[PluginController sharedPluginController] urlsForContainerURL:url];
|
|
}
|
|
}
|
|
|
|
@end
|