campo-sirio/src/tf/tf0.cpp

22 lines
593 B
C++
Raw Normal View History

#include <xvt.h>
#include "tf0.h"
int main(int argc, char** argv)
{
int rt = -1;
const int r = (argc > 1) ? atoi( &argv[1][1] ) : 1;
switch (r)
{
case 1 : rt = tf0200(argc, argv); break; // Comunicazione Liquidazioni Periodiche IVA
//case 2 : rt = tf0300(argc, argv); break; // Nuovo Spesometro (2017)
//case 3: rt = tf0400(argc, argv); break; // Invio TF
case 4: rt = tf0500(argc, argv); break; // Invio IVA
//case 5: rt = tf0600(argc, argv); break; // Invio Spesometro
default: rt = tf0100(argc, argv); break; // Trasferimento Fatture Elettroniche
}
return rt;
}