Files correlati : tc2.exe Ricompilazione Demo : [ ] Commento : Tabelle di riclassificlazione per trasferimento a IPSOA git-svn-id: svn://10.65.10.50/branches/R_10_00@21264 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			24 lines
		
	
	
		
			481 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			481 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| #include <xvt.h>
 | |
| 
 | |
| #include "tc2.h"
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|   const int op = argc < 2 ? 0 : argv[1][1]-'0';
 | |
|   switch (op)
 | |
|   {
 | |
| 		case  2: tc2300(argc,argv); break;  // parametri ditta
 | |
| 		case	4: tc2500(argc,argv); break;	//gestore tabelle multirel
 | |
| 		case	6: tc2700(argc,argv); break;	//esportazione contabilita' a TeamSystem
 | |
| 		case	7: tc2800(argc,argv); break;	// Riclassificazione conti TeamSystem
 | |
| 	  default: ; tc2100(argc,argv); break;
 | |
|   }
 | |
|   exit(0);
 | |
|   return 0;
 | |
| }
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 |