home *** CD-ROM | disk | FTP | other *** search
- /*
- Coordinator.h
- by Joe Freeman, David LaVallee
- Subprocess Example, Release 2.0
- NeXT Computer, Inc.
-
- 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.
- */
-
- #import <objc/Object.h>
-
- @interface Coordinator:Object
- {
- id commandView;
- id infoPanel;
- id theSubprocess;
- id stringTable;
- }
-
- - showInfo:sender;
-
- // Subprocess Delegation
-
- - subprocessOutput:(char *)buffer;
- - subprocessDone;
-
- // CommandScroll Delegation
-
- - userEntered:(char *)buffer;
-
- // Application Object Delegation
-
- - appDidInit:sender;
- - appWillTerminate:sender;
-
- @end
-