libs-gsweb/Examples/WebBookStore1/Application.m

20 lines
173 B
Mathematica
Raw Normal View History

#include "Application.h"
@implementation Application
- (id)init
{
if ((self = [super init]))
{
}
return self;
}
- (void)dealloc
{
[super dealloc];
}
@end