Files correlati : cg2.exe cg2100c.msk Ricompilazione Demo : [ ] Commento : Modificata modalità di pagamento per invio dati rilevanti git-svn-id: svn://10.65.10.50/branches/R_10_00@22421 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			16 lines
		
	
	
		
			405 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			405 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #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;
 | |
| }
 |