campo-sirio/ci/ci2.cpp
luca83 e3b1c64f21 Patch level :
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/branches/R_10_00@21569 c028cbd2-c16b-5b4b-a496-9718f37d4682
2011-02-02 11:47:26 +00:00

16 lines
411 B
C++
Executable File

#include <xvt.h>
#include "ci2.h"
int main(int argc, char** argv)
{
const int op = (argc > 1) ? argv[1][1] - '0' : 0;
switch (op)
{
case 0 : ci2100(argc,argv); break; // Rilevamento preventivi
case 1 : ci2200(argc,argv); break; // Rilevamento consuntivo
case 2 : ci2300(argc,argv); break; // Importatore da TeamSystem
default: ci2100(argc,argv); break; // Rilevamento preventivi
}
return 0;
}