git-svn-id: svn://10.65.10.50/branches/R_10_00@22882 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			16 lines
		
	
	
		
			389 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			389 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
#include "ci1.h"
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{
 | 
						|
  const int op = (argc > 1) ? argv[1][1] - '0' : 0;
 | 
						|
  switch (op)
 | 
						|
  {
 | 
						|
	case 1: ci1200(argc,argv); break; // stampa 
 | 
						|
  case 2: ci1300(argc,argv); break; // rilevazione ore mensili per risorsa - attrezzatura
 | 
						|
  case 3: ci1400(argc,argv); break; // rilevazione ore mensili per cms - cdc
 | 
						|
  default: break; 
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 |