home *** CD-ROM | disk | FTP | other *** search
- //------------------------------------------------------------------------------------------------
- //
- // 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