apps-projectcenter/Modules/Projects/Tool/Resources/main.m
Gregory John Casamento bf26cfe775 * Modules/Projects/Application/Resources/AppController.h
* 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
2010-05-30 07:10:31 +00:00

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;
}