ae04b7cd99
Files correlati : ci0 ci2 tracciati record Ricompilazione Demo : [ ] Commento : Correzioni varie ai programmi di rilevamento ore già esistenti Correzione ai tracciati record per renderlo ceorente git-svn-id: svn://10.65.10.50/branches/R_10_00@20697 c028cbd2-c16b-5b4b-a496-9718f37d4682
19 lines
679 B
C++
Executable File
19 lines
679 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
|
|
case 5 : ci0600(argc,argv); break; // gestione default risorse / attrezzature
|
|
default: ci0100(argc,argv); break; // gestione tabelle cont. ind.
|
|
}
|
|
return 0;
|
|
}
|