campo-sirio/tc/tc2.cpp
luca83 96cd5b4c1b Patch level : 10.0 NO PATCH
Files correlati     : tc2 e tabelle
Ricompilazione Demo : [ ]
Commento            :
Aggiunti i programmi tc2 - Trasefrimento ipsoa


git-svn-id: svn://10.65.10.50/branches/R_10_00@21107 c028cbd2-c16b-5b4b-a496-9718f37d4682
2010-11-05 11:40:58 +00:00

28 lines
697 B
C++
Executable File

#include <xvt.h>
#include "tc2.h"
int main(int argc, char** argv)
{
const int op = argc < 2 ? 0 : argv[1][1]-'0';
switch (op)
{
// case 1: tc2200(argc,argv); break;
case 2: tc2300(argc,argv); break; // parametri ditta
// case 3: tc2400(argc,argv); break;
case 4: tc2500(argc,argv); break; //gestore tabelle multirel
case 5: tc2600(argc,argv); break; //importazione PCon, Cuas, CodIVA
case 6: tc2700(argc,argv); break; //esportazione contabilita' a TeamSystem
case 7: tc2800(argc,argv); break; // Riclassificazione conti TeamSystem
case 8: tc2900(argc,argv); break; // COnverione archivi CAMPO
default: ; tc2100(argc,argv); break;
}
exit(0);
return 0;
}