1a560c6df1
Files correlati : Ricompilazione Demo : [ ] Commento :riportate modifiche 3.2 git-svn-id: svn://10.65.10.50/trunk@16969 c028cbd2-c16b-5b4b-a496-9718f37d4682
22 lines
388 B
C++
Executable File
22 lines
388 B
C++
Executable File
#include <xvt.h>
|
|
#include "co1.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
const int n = argc > 1 ? argv[1][1]-'0' : 0;
|
|
switch (n)
|
|
{
|
|
case 2:
|
|
co1300(argc, argv); // Stampa estratto conto
|
|
break;
|
|
case 3:
|
|
co1400(argc, argv); // Fatturazione Conferimenti
|
|
break;
|
|
//case 4:
|
|
// co1500(argc, argv); // Invio mov.coop. a TeamSystem
|
|
// break;
|
|
default:
|
|
break;
|
|
}
|
|
return 0;
|
|
} |