mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-22 11:21:29 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@30485 72102866-910b-0410-8b05-ffd578937521
30 lines
602 B
Objective-C
30 lines
602 B
Objective-C
/*
|
|
Project: $PROJECTNAME$
|
|
|
|
Author: $FULLUSERNAME$
|
|
|
|
Created: $DATE$ by $USERNAME$
|
|
*/
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
int
|
|
main(int argc, const char *argv[])
|
|
{
|
|
// Uncomment if your application is Renaissance application
|
|
/* CREATE_AUTORELEASE_POOL (pool);
|
|
[NSApplication sharedApplication];
|
|
[NSApp setDelegate: [AppController new]];
|
|
|
|
#ifdef GNUSTEP
|
|
[NSBundle loadGSMarkupNamed: @"MainMenu-GNUstep" owner: [NSApp delegate]];
|
|
#else
|
|
[NSBundle loadGSMarkupNamed: @"MainMenu-OSX" owner: [NSApp delegate]];
|
|
#endif
|
|
|
|
RELEASE (pool);
|
|
*/
|
|
|
|
return NSApplicationMain (argc, argv);
|
|
}
|
|
|