Files correlati : ci1 Ricompilazione Demo : [ ] Commento : Aggiunte stampe contabilita' industriale (Ruffo) git-svn-id: svn://10.65.10.50/trunk@13170 c028cbd2-c16b-5b4b-a496-9718f37d4682
18 lines
245 B
C++
Executable File
18 lines
245 B
C++
Executable File
#include <xvt.h>
|
|
#include "ci1.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int op = (argc > 1) ? argv[1][1] - '0' : 0;
|
|
switch (op)
|
|
{
|
|
case 1:
|
|
ci1200(argc,argv); // stampa
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|