1b64d55829
git-svn-id: svn://10.65.10.50/branches/R_10_00@22882 c028cbd2-c16b-5b4b-a496-9718f37d4682
16 lines
420 B
C++
Executable File
16 lines
420 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 1 : ci2200(argc,argv); break; // Rilevamento consuntivo
|
|
case 2 : ci2300(argc,argv); break; // Importatore da TeamSystem
|
|
case 3 : ci2400(argc,argv); break; // Rilevamento consuntivo avanzato
|
|
default: ci2100(argc,argv); break; // Rilevamento preventivi
|
|
}
|
|
return 0;
|
|
}
|