mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-23 11:20:57 +00:00
19 lines
349 B
Mathematica
19 lines
349 B
Mathematica
|
#include "Trading.h"
|
||
|
#include "TradingData.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||
|
id trading = [[Trading alloc] init];
|
||
|
id data = [[TradingData alloc] init];
|
||
|
|
||
|
[trading recreateTables];
|
||
|
[data fillTables];
|
||
|
[data saveChanges];
|
||
|
|
||
|
[trading release];
|
||
|
[data release];
|
||
|
[pool release];
|
||
|
return 0;
|
||
|
}
|