14 lines
282 B
C++
14 lines
282 B
C++
|
#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
|
||
|
default: ci2100(argc,argv); break; // Rilevamento preventivi
|
||
|
}
|
||
|
return 0;
|
||
|
}
|