home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / MiniExamples / NormalBrowser / Controller.h next >
Text File  |  1993-01-19  |  389b  |  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/Application.h>
  11.  
  12. @interface Controller:Application
  13. {
  14.     id    myBrowser;
  15. }
  16.  
  17. #define NUMROWS        30
  18. #define NUMCOLUMNS    2
  19.  
  20. @end
  21.