campo-sirio/ha/ha1.cpp
luca 36af44eb2d Patch level : ha1076
Files correlati     : ha0 ha1
Ricompilazione Demo : [ ]
Commento            :
Modifiche richieste da Roberto per ocnto di hardy


git-svn-id: svn://10.65.10.50/branches/R_10_00@22411 c028cbd2-c16b-5b4b-a496-9718f37d4682
2011-09-12 11:09:22 +00:00

16 lines
471 B
C++
Executable File

#include <xvt.h>
#include "ha1.h"
int main(int argc,char** argv)
{
const int r = (argc > 1) ? atoi(&argv[1][1]) : -1;
switch (r)
{
case 0: ha1100(argc, argv); break; // generazione .txt da files .ini del postino (file tipo XXXvar.txt)
case 1: ha1200(argc, argv); break; // generazione .txt da anagrafica campo (file tipo XXX.txt)
case 2: ha1300(argc, argv); break; // importazione file da terminalini (file tipo upload.d)
default: break;
}
return 0;
}