home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiniExamples / AppKit / NormalBrowser / Controller.h < prev    next >
Encoding:
Text File  |  1993-02-22  |  384 b   |  21 lines

  1. /* Controller.h
  2. *  Purpose: How to implement a normal browser. 
  3. *
  4. *  You may freely copy, distribute, and reuse the code in this example.
  5. *  NeXT disclaims any warranty of any kind, expressed or  implied, as to its fitness
  6. *  for any particular use.
  7. *
  8. */
  9.  
  10. #import <appkit/appkit.h>
  11.  
  12. @interface Controller:Application
  13. {
  14.     id    myBrowser;
  15. }
  16.  
  17. #define NUMROWS        30
  18. #define NUMCOLUMNS    2
  19.  
  20. @end
  21.