19 lines
298 B
Objective-C
19 lines
298 B
Objective-C
//
|
|
// AudioDecoder.h
|
|
// CogAudio
|
|
//
|
|
// Created by Vincent Spader on 2/21/07.
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Plugin.h"
|
|
|
|
@interface AudioDecoder : NSObject {
|
|
}
|
|
|
|
+ (id<CogDecoder>)audioDecoderForSource:(id <CogSource>)source;
|
|
|
|
@end
|