Files correlati : ca1.exe Ricompilazione Demo : [ ] Commento : Prima bozza stampe anagrafiche git-svn-id: svn://10.65.10.50/trunk@12881 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			19 lines
		
	
	
		
			457 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			457 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #include <xvt.h>
 | |
| 
 | |
| #include "ca1.h"
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|   const int r = (argc > 1) ? argv[1][1] - '0' : 0;
 | |
|   switch (r)
 | |
|   {
 | |
| 		case  3: ca1400(argc,argv); break; // stampa piano dei conti
 | |
| 		case  4: ca1500(argc,argv); break; // stampa centri di costo
 | |
| 	  case  5: ca1600(argc,argv); break; // stampa commesse
 | |
| 		case  6: ca1700(argc,argv); break; // stampa fasi
 | |
| 		default: ca1100(argc,argv); break; // stampa tabelle
 | |
|   }
 | |
|   exit(0);
 | |
|   return 0;
 | |
| }
 |