ResKnife/Cocoa/Plug-Ins/Hex Editor/HexEditorDelegate.h

17 lines
358 B
C
Raw Normal View History

2002-02-02 11:48:54 +00:00
#import <Cocoa/Cocoa.h>
@interface HexEditorDelegate : NSObject
{
IBOutlet NSTextView *ascii;
IBOutlet NSTextView *hex;
IBOutlet NSTextView *offset;
}
- (NSString *)offsetRepresentation:(NSData *)data;
- (NSString *)hexRepresentation:(NSData *)data;
- (NSString *)asciiRepresentation:(NSData *)data;
- (NSTextView *)hex;
- (NSTextView *)ascii;
@end