home *** CD-ROM | disk | FTP | other *** search
- static char rcsid[] = "$Id: ThreadTest.m,v 1.1 1997/04/02 18:28:47 croehrig Exp $";
- /*
- * ThreadTest application controller.
- */
-
- #import <appkit/appkit.h>
- #import "ThreadTest.h"
- #import "Counter.h"
-
- @implementation ThreadTest : Object
-
- - newTest:sender
- {
- [[Counter alloc] init];
- return self;
- }
-
- - kill:sender
- {
- [[NXApp mainWindow] performClose:self];
- return self;
- }
-
- @end
-