home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / CurrencyConverter / CurrencyConverter_main.m < prev    next >
Text File  |  1995-01-05  |  343b  |  16 lines

  1. /* Generated by the NeXT Project Builder 
  2.    NOTE: Do NOT change this file -- Project Builder maintains it.
  3. */
  4.  
  5. #import <AppKit/AppKit.h>
  6.  
  7. void main(int argc, char *argv[]) {
  8.  
  9.     [NSApplication sharedApplication];
  10.     if ([NSBundle loadNibNamed:@"CurrencyConverter.nib" owner:NSApp])
  11.         [NSApp run];
  12.  
  13.     [NSApp release];
  14.     exit(0);
  15. }
  16.