home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.2 (Developer)
/
NS_dev_3.2.iso
/
NextDeveloper
/
Headers
/
appkit
/
NXCustomImageRep.h
< prev
next >
Wrap
Text File
|
1990-10-15
|
694b
|
31 lines
/*
NXCustomImageRep.h
Application Kit, Release 2.0
Copyright (c) 1988, 1989, 1990, NeXT, Inc. All rights reserved.
*/
#import "NXImageRep.h"
@interface NXCustomImageRep : NXImageRep
{
SEL drawMethod;
id drawObject;
int _reservedInt;
}
- initDrawMethod:(SEL)aMethod inObject:anObject;
- (BOOL)draw;
- read:(NXTypedStream *)stream;
- write:(NXTypedStream *)stream;
/*
* The following new... methods are now obsolete. They remain in this
* interface file for backward compatibility only. Use Object's alloc method
* and the init... methods defined in this class instead.
*/
+ newDrawMethod:(SEL)aMethod inObject:anObject;
@end