git-svn-id: svn://10.65.10.50/branches/R_10_00@22767 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			23 lines
		
	
	
		
			468 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			468 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;
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |