home *** CD-ROM | disk | FTP | other *** search
- /* -*-objc-*- */
-
- /*
- $Header$
- $Author: dglattin $
- $Date$
- $Log$
- */
-
- #ifndef __SUBCLASS1_H
- #define __SUBCLASS1_H
-
-
- #include <Object.h>
-
- @interface SubClass1 : Object {
-
- char dumb[ 17 ];
- }
-
- +initialize;
- + newOther;
- - hokeyMethod;
- - print;
- - print:( const char* )aPhrase;
-
- + ( int )return12;
- - ( int )return15;
- - ( int )return24;
- - ( int )return33;
-
-
- @end
-
- #endif
-
-