apps-projectcenter/PCAppProj/AppController.m
Robert Slover 17a1df5063 apps now don't use gmodels anymore
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@7510 72102866-910b-0410-8b05-ffd578937521
2000-09-14 08:54:19 +00:00

43 lines
506 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
{
}
- (void)applicationDidFinishLaunching:(NSNotification *)notif
{
}
- (void)showPrefPanel:(id)sender
{
}
- (void)showInfoPanel:(id)sender
{
}
@end