home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiniExamples / AppKit / Winfo / WinApp.h < prev    next >
Encoding:
Text File  |  1991-04-22  |  454 b   |  20 lines

  1. /*
  2.  * Winfo
  3.  * by Paul S. Kleppner
  4.  *
  5.  * This program may be freely distributed, but not sold.
  6.  * It is provided without warranty of any kind, expressed or
  7.  * implied, as to its fitness for any particular use.
  8.  */
  9.  
  10. /*
  11.  * WinApp.  We subclass the application object, to add a method
  12.  * to return the context number (normally a hidden part
  13.  * of the interface).
  14.  */
  15. #import <appkit/Application.h>
  16.  
  17. @interface WinApp:Application
  18. - (int) contextNumber;
  19. @end
  20.