home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiniExamples / AppKit / ConvertXYtoChar / Controller.h < prev    next >
Encoding:
Text File  |  1991-09-04  |  580 b   |  28 lines

  1. /* Controller.h
  2.  * Purpose:  A subclass of Object and the main controlling class of
  3.  *    the application.  Controller is the application delegate.
  4.  *
  5.  * You may freely copy, distribute, and reuse the code in this example.
  6.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  7.  * fitness for any particular use.
  8.  *
  9.  * Written by: Sharon Zakhour
  10.  * Created: 22/July/91
  11.  *
  12.  */
  13.  
  14. #import <objc/Object.h>
  15.  
  16. @interface Controller:Object
  17. {
  18.     id    myScrollView;
  19.     id    charCoordinate;
  20.     id    charPosition;
  21. }
  22.  
  23. - appDidInit:sender;
  24. - convert:sender;
  25. - replaceText;
  26.  
  27. @end
  28.