home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula
/
nebula.bin
/
SourceCode
/
Palettes
/
Clocks
/
Inspectors.subproj
/
ImageWell.h
< prev
next >
Wrap
Text File
|
1992-12-09
|
940b
|
36 lines
//------------------------------------------------------------------------------------------------
//
// ImageWell
//
// Inherits From: Control
//
// Declared In: ImageWell.h
//
// Class Description
//
// ImageWell supports dropping of any file from which an image
// can be created.
//
//
// Disclaimer
//
// You may freely copy, distribute and reuse this software and its
// associated documentation. I disclaim any warranty of any kind,
// expressed or implied, as to its fitness for any particular use.
//
//------------------------------------------------------------------------------------------------
#import <appkit/appkit.h>
@interface ImageWell : Control
{
id image;
}
//------------------------------------------------------------------------------------------------
// Accessing Image
//------------------------------------------------------------------------------------------------
- image:anImage;
- image;
@end