This is HandleDeputy.h in view mode; [Download] [Up]
// This class is an abstract class which will act like a delegate in
// AppKit. When set as a deputy of EtermHandle class, the input to
// the application and the output from the application will be
// channeled to inputToApp and outputFromApp. Since these two methods
// are necessary for the success of the EtermHandle. The abstact class
// implements the default behavior, which is return SELF.
#import <objc/Object.h>
@interface HandleDeputy:Object
{
id client; // who are you representing
}
- inputToApp:(char *)in;
- outputFromApp:(char *)out;
@end
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.