git-svn-id: svn://10.65.10.50/branches/R_10_00@22729 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			23 lines
		
	
	
		
			472 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			472 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
 | 
						|
#include "tc1.h"
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
  const int op = argc < 2 ? 0 : argv[1][1]-'0';
 | 
						|
  switch (op)
 | 
						|
  {
 | 
						|
		case	7: tc1800(argc,argv); break;	// riclassificazione conti zucchetti
 | 
						|
		case	6: tc1700(argc,argv); break;	// riclassificazione tabelle
 | 
						|
		case	2: tc1300(argc,argv); break;	// Configurazione Ditta
 | 
						|
		case	1: tc1200(argc,argv); break;	// Tabelle
 | 
						|
    default: tc1100(argc,argv); break;  // trasferimento zucchetti
 | 
						|
  }
 | 
						|
  return 0; 
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |