mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-20 18:32:17 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7258 72102866-910b-0410-8b05-ffd578937521
31 lines
363 B
Objective-C
31 lines
363 B
Objective-C
/*
|
|
* AppController.m created by phr on 2000-08-27 11:38:58 +0000
|
|
*
|
|
* Project TestApp
|
|
*
|
|
* Created with ProjectCenter - http://www.projectcenter.ch
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#import "AppController.h"
|
|
|
|
@implementation AppController
|
|
|
|
- (id)init
|
|
{
|
|
if ((self = [super init])) {
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
[super dealloc];
|
|
}
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
}
|
|
|
|
@end
|