home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / Broadcast / BroadcastDaemon / Controller.h < prev    next >
Encoding:
Text File  |  1993-01-14  |  653 b   |  32 lines

  1. /* Copyright (c) 1992 by NightShade Software.  All rights reserved.
  2.  *    You may modify and (hopefully) improve this code if you keep the
  3.  *    original copyright messages, don't sell it, and share your improvements
  4.  *    with with the World.
  5.  *
  6.  * NAME
  7.  *     Controller : Object
  8.  *
  9.  * DESCRIPTION
  10.  *     A class to handle the messages from the Broadcast Listener.
  11.  *
  12.  * COMMENTS/PROBLEMS
  13.  *     You get what you pay for...
  14.  *
  15.  * AUTHOR/DATE CREATED
  16.  *     Gary Ritchie/December 22, 1992
  17.  *
  18.  * REVISIONS
  19.  *
  20.  */
  21.  
  22. #import <appkit/appkit.h>
  23.  
  24. @interface Controller : Object
  25. {
  26. }
  27.  
  28. - appDidInit:sender;
  29. - (int) broadcast:(char *)msg from:(char *)user;
  30.  
  31. @end
  32.