home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Utilities / VMPages-1.0-I / VMApp.h < prev    next >
Encoding:
Text File  |  1997-01-27  |  332 b   |  19 lines

  1. /* VMApp.h created by chaos on Tue 14-Jan-1997 */
  2.  
  3. #import <AppKit/AppKit.h>
  4. #import <Foundation/Foundation.h>
  5. #import "cheese.h"
  6.  
  7. @interface VMApp : NSApplication
  8. {
  9.     NSTimeInterval    period;
  10.     id            timer;
  11. }
  12.  
  13. -(void) applicationDidFinishLaunching:(NSNotification *)aNotification;
  14. -(void) stopApp: sender;
  15. -(void) calcNow;
  16.  
  17.  
  18. @end
  19.