home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / Classes / SampleClasses / TestClass.h < prev    next >
Text File  |  1992-08-04  |  698b  |  19 lines

  1. // -------------------------------------------------------------------------------------
  2. // TestClass
  3. // -------------------------------------------------------------------------------------
  4.  
  5. #import <appkit/Application.h>
  6. #import "objectThreadPerform.h"
  7.  
  8. // -------------------------------------------------------------------------------------
  9. @interface TestClass : Application
  10. {
  11.     id                  scrollView;         // ScrollView outlet
  12.     id                  fontNormal;         // normal font
  13.     id                  fontItalic;         // italic font
  14.     id                  myScrollText;       // ScrollText object
  15.     int                 threadCount;        // thread count
  16. }
  17.  
  18. @end
  19.