ResKnife/Cocoa/Plug-Ins/Hex Editor/HexTextView.h
2002-05-31 00:17:53 +00:00

13 lines
303 B
Objective-C

#import <Cocoa/Cocoa.h>
#import "HexEditorDelegate.h"
#import "HexWindowController.h"
@interface HexTextView : NSTextView
{
}
- (void)editData:(NSMutableData *)data replaceBytesInRange:(NSRange)range withData:(NSData *)newData;
@end
@interface NSTextView (HexTextView)
- (void)swapForHexTextView;
@end