mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
32 lines
363 B
Mathematica
32 lines
363 B
Mathematica
|
/*
|
||
|
* 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
|