home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / Educational / PrimeThreads / PrimeThreadsApp.h < prev    next >
Encoding:
Text File  |  1992-12-26  |  377 b   |  18 lines

  1. /*********************/
  2. /* PrimeThreadsApp.h */
  3. /*********************/
  4. #import <appkit/Application.h>
  5. #import <cthreads.h>
  6. @interface PrimeThreadsApp:Application
  7. {
  8.     id    numPrimesField;
  9.     id    highestPrimeField;
  10.     cthread_t primeFinderThread;
  11. }
  12. - setNumPrimesField:anObject;
  13. - setHighestPrimeField:anObject;
  14. - appDidInit:sender;
  15. - toggleGoStop:sender;
  16. - updateFields;
  17. @end
  18.