git-svn-id: svn://10.65.10.50/branches/R_10_00@22882 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			20 lines
		
	
	
		
			731 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			731 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 0 : ci0100(argc,argv); break; // gestione tabelle cont. ind.
 | 
						|
	case 1 : ci0200(argc,argv); break; // gestione risorse / attrezzature
 | 
						|
	case 2 : ci0300(argc,argv); break; // parametri configurazione Contabilità Industriale
 | 
						|
  case 3 : ci0400(argc,argv); break; // immssione documenti
 | 
						|
  case 4 : ci0500(argc,argv); break; // gestione disponibilità risorse / attrezzature
 | 
						|
  case 5 : ci0600(argc,argv); break; // gestione default risorse / attrezzature
 | 
						|
  case 6 : ci0700(argc,argv); break; // creazione do
 | 
						|
  default: ci0100(argc,argv); break; // gestione tabelle cont. ind.
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 |