Files correlati : Ricompilazione Demo : [ ] Commento : git-svn-id: svn://10.65.10.50/branches/R_10_00@21569 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			16 lines
		
	
	
		
			411 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			411 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
#include "ci2.h"
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
  const int op = (argc > 1) ? argv[1][1] - '0' : 0;
 | 
						|
  switch (op)
 | 
						|
  {
 | 
						|
  case 0 : ci2100(argc,argv); break; // Rilevamento preventivi
 | 
						|
  case 1 : ci2200(argc,argv); break; // Rilevamento consuntivo
 | 
						|
  case 2 : ci2300(argc,argv); break; // Importatore da TeamSystem
 | 
						|
	default: ci2100(argc,argv); break; // Rilevamento preventivi
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 |