mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
* Modules/Projects/Application/Resources/AppController.m * Modules/Projects/Tool/Resources/main.m: Remove licensing and copyright information from these since we don't want to assume that the user will be writing a GPLv3 program owned by the FSF (while that would be nice) it's not correct to assume it. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@30484 72102866-910b-0410-8b05-ffd578937521
23 lines
291 B
Objective-C
23 lines
291 B
Objective-C
/*
|
|
Project: $PROJECTNAME$
|
|
|
|
Author: $FULLUSERNAME$
|
|
|
|
Created: $DATE$ by $USERNAME$
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
int
|
|
main(int argc, const char *argv[])
|
|
{
|
|
id pool = [[NSAutoreleasePool alloc] init];
|
|
|
|
// Your code here...
|
|
|
|
// The end...
|
|
[pool release];
|
|
|
|
return 0;
|
|
}
|
|
|