home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * RightSubView.m
- *
- * Purpose:
- * This object simply blasts an image to itself. Knows the name of the
- * image, too.
- *
- * You may freely copy, distribute, and reuse the code in this example.
- * NeXT disclaims any warranty of any kind, expressed or implied, as to its
- * fitness for any particular use.
- *
- * Written by: Mary McNabb
- * Created: Apr 91
- *
- */
-
- #import <appkit/appkit.h>
-
- #define MAXLEN 20
-
- @interface RightSubView:View
- {
- char animalName[MAXLEN];
- }
-
- - drawSelf:(const NXRect *)r :(int)c;
- - setAnimalPicture:(char *)path;
-
- @end
-