Files correlati : ci1 Ricompilazione Demo : [ ] Commento : Aggiunte stampe contabilita' industriale (Ruffo) git-svn-id: svn://10.65.10.50/trunk@13170 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			24 lines
		
	
	
		
			453 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			453 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #include <xvt.h>
 | |
| #include "ci0.h"
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|   const int op = (argc > 1) ? argv[1][1] - '0' : 0;
 | |
|   switch (op)
 | |
|   {
 | |
| 	case 1: 
 | |
| 	  // ci0200(argc,argv); // stampa tabelle 
 | |
| 	  break;
 | |
| 	case 2:
 | |
|     ci0300(argc,argv); // parametri configurazione Contabilita' Industriale
 | |
| 	  break; 
 | |
|   case 3: 
 | |
| 	  ci0400(argc,argv); // Immssione documenti 
 | |
| 	  break; 
 | |
|   default:
 | |
| 	  // ci0100(argc,argv); // gestione tabelle 
 | |
| 	  break; 
 | |
|   }
 | |
|   return 0;
 | |
| }
 |