Cog/Plugins/APL/APLFile.h
Christopher Snowhill 85c7073649 Reformat my own source code with clang-format
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-02-06 21:49:27 -08:00

17 lines
305 B
Objective-C

#import <Cocoa/Cocoa.h>
@interface APLFile : NSObject {
long startBlock;
long endBlock;
NSURL* file;
}
+ createWithFile:(NSString*)f;
- initWithFile:(NSString*)f;
- (long)startBlock; // always return 0 or greater!
- (long)endBlock;
- (NSURL*)file;
// writing support to be added in far future
@end