apps-projectcenter/PCAppProj/AppController.m

32 lines
363 B
Mathematica
Raw Normal View History

/*
* 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