Files correlati : pr0.exe pr1.exe Ricompilazione Demo : [ ] Commento : Gestione Euro per inserimento e stampa provvigioni agenti git-svn-id: svn://10.65.10.50/trunk@8618 c028cbd2-c16b-5b4b-a496-9718f37d4682
24 lines
444 B
C++
Executable File
24 lines
444 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "pr1.h"
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
const int n = argc > 1 ? atoi(argv[1]+1) : -1;
|
|
|
|
switch (n)
|
|
{
|
|
case 1:
|
|
pr1200(argc,argv); break; // stampa archivio percentuali di provvigione
|
|
case 2:
|
|
pr1300(argc,argv); break; // stampa schede di provvigione
|
|
case 3:
|
|
pr1400(argc,argv); break; // stampa statistiche
|
|
default:
|
|
pr1100(argc,argv); break; // stampa agenti
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|
|
|