2007-10-20 16:15:02 +00:00
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface APLFile : NSObject {
|
|
|
|
long startBlock;
|
|
|
|
long endBlock;
|
|
|
|
NSURL* file;
|
|
|
|
}
|
2022-02-07 05:49:27 +00:00
|
|
|
+ createWithFile:(NSString*)f;
|
|
|
|
- initWithFile:(NSString*)f;
|
2007-10-20 16:15:02 +00:00
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
- (long)startBlock; // always return 0 or greater!
|
|
|
|
- (long)endBlock;
|
|
|
|
- (NSURL*)file;
|
2007-10-20 16:15:02 +00:00
|
|
|
|
2022-02-07 05:49:27 +00:00
|
|
|
// writing support to be added in far future
|
2007-10-20 16:15:02 +00:00
|
|
|
@end
|