cog/Plugins/Dumb/DumbDecoder.h

29 lines
444 B
Objective-C
Executable File

//
// DumbFile.h
// Cog
//
// Created by Vincent Spader on 5/29/06.
// Copyright 2006 Vincent Spader. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import <Dumb/dumb.h>
#import "Plugin.h"
@interface DumbDecoder : NSObject <CogDecoder> {
DUMBFILE *df;
DUMBFILE_SYSTEM dfs;
DUH *duh;
DUH_SIGRENDERER *dsr;
id<CogSource> source;
long length;
}
- (void)setSource:(id<CogSource>)s;
- (id<CogSource>)source;
- (void)cleanUp;
@end