campo-sirio/tc/tc1.cpp
alex 256ef4829c Patch level : 10.0 396
Files correlati     :  tc1.exe
Ricompilazione Demo : [ ]
Commento

Aggiornamenti all invio a zucchetti (nuove tabelle)


git-svn-id: svn://10.65.10.50/trunk@19155 c028cbd2-c16b-5b4b-a496-9718f37d4682
2009-07-28 15:05:20 +00:00

24 lines
458 B
C++
Executable File

#include <xvt.h>
#include "tc1.h"
int main(int argc, char** argv)
{
const int op = argc < 2 ? 0 : argv[1][1]-'0';
switch (op)
{
case 7: tc1800(argc,argv); break; // riclassificazione conti zucchetti
case 6: tc1700(argc,argv); break; // riclassificazione tabelle
case 1: tc1200(argc,argv); break; // Tabelle
case 0: tc1100(argc,argv); break; // trasferimento zucchetti
default: tc1100(argc,argv); break;
}
exit(0);
return 0;
}