home *** CD-ROM | disk | FTP | other *** search
- /* -*-objc-*- */
-
- /*
- $Header$
- $Author: dglattin $
- $Date$
- $Log$
- */
-
- #ifndef __SUBCLASS2_H
- #define __SUBCLASS2_H
-
-
- #include <Object.h>
-
- @interface SubClass2 : Object {
-
- char dumb[ 24 ];
- }
-
- +initialize;
- + newOther;
- - hokeyMethod;
- - print;
- - print:( const char* )aPhrase;
- - print:( const char* )msg1 with:( const char* )msg2;
- - storeOn:( int )aFd;
- - readFrom:( int )aFd;
-
- @end
-
-
- #endif
-
-