campo-sirio/tc/tc9.cpp
guy 0a2d7f4399 Aggiunta esportazione per PayLine
git-svn-id: svn://10.65.10.50/branches/R_10_00@22767 c028cbd2-c16b-5b4b-a496-9718f37d4682
2012-12-04 16:47:36 +00:00

22 lines
397 B
C++
Executable File

#include <xvt.h>
#include "tc9.h"
int main(int argc, char** argv)
{
const int op = argc < 2 ? 0 : argv[1][1]-'0';
switch (op)
{
case 1: tc9200(argc,argv); break; // Invio a WHATIS
case 2: tc9300(argc,argv); break; // Invio a Sispac/Cosmo
case 3: tc9400(argc,argv); break; // Tabelle Sispac/Cosmo
default: tc9100(argc,argv); break; // Invio a Proforma
}
return 0;
}