home *** CD-ROM | disk | FTP | other *** search
- /*********************/
- /* PrimeThreadsApp.h */
- /*********************/
- #import <appkit/Application.h>
- #import <cthreads.h>
- @interface PrimeThreadsApp:Application
- {
- id numPrimesField;
- id highestPrimeField;
- cthread_t primeFinderThread;
- }
- - setNumPrimesField:anObject;
- - setHighestPrimeField:anObject;
- - appDidInit:sender;
- - toggleGoStop:sender;
- - updateFields;
- @end
-