campo-sirio/src/cg/cg7.cpp

16 lines
405 B
C++
Raw Normal View History

#include <xvt.h>
#include "cg7.h"
int main(int argc,char** argv)
{
const int r = (argc > 1) ? atoi(&argv[1][1]) : -1;
switch (r)
{
case 0: cg7100(argc, argv); break; // gestore stampe generico modulo FE (stampe particolari CG)
case 1: cg7200(argc, argv); break; // lista fatture per imponibile
default: cg7300(argc, argv); break; // gestore tabelle di modulo CG
}
return 0;
}