2010-11-05 11:40:58 +00:00
|
|
|
#include <xvt.h>
|
|
|
|
|
|
|
|
#include "tc2.h"
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
const int op = argc < 2 ? 0 : argv[1][1]-'0';
|
|
|
|
switch (op)
|
|
|
|
{
|
2010-12-07 17:00:51 +00:00
|
|
|
case 2: tc2300(argc,argv); break; // parametri ditta
|
2010-11-05 11:40:58 +00:00
|
|
|
case 4: tc2500(argc,argv); break; //gestore tabelle multirel
|
|
|
|
case 6: tc2700(argc,argv); break; //esportazione contabilita' a TeamSystem
|
|
|
|
case 7: tc2800(argc,argv); break; // Riclassificazione conti TeamSystem
|
2012-12-04 16:47:36 +00:00
|
|
|
default: tc2100(argc,argv); break;
|
2010-11-05 11:40:58 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|