b7744a2a88
Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/trunk@20639 c028cbd2-c16b-5b4b-a496-9718f37d4682
18 lines
599 B
C++
Executable File
18 lines
599 B
C++
Executable File
#include <xvt.h>
|
|
#include "ci0.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int op = (argc > 1) ? argv[1][1] - '0' : 0;
|
|
switch (op)
|
|
{
|
|
case 0 : ci0100(argc,argv); break; // gestione tabelle cont. ind.
|
|
case 1 : ci0200(argc,argv); break; // gestione risorse / attrezzature
|
|
case 2 : ci0300(argc,argv); break; // parametri configurazione Contabilita' Industriale
|
|
case 3 : ci0400(argc,argv); break; // immssione documenti
|
|
case 4 : ci0500(argc,argv); break; // gestione disponibilità risorse / attrezzature
|
|
default: ci0100(argc,argv); break; // gestione tabelle cont. ind.
|
|
}
|
|
return 0;
|
|
}
|