Files correlati : ci2 Ricompilazione Demo : [ ] Commento : Aggiunto il programma di rilevamento ore consuntivo (da creare il nuovo progetto) git-svn-id: svn://10.65.10.50/branches/R_10_00@20699 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			15 lines
		
	
	
		
			345 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			345 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
 | |
| 	default: ci2100(argc,argv); break; // Rilevamento preventivi
 | |
|   }
 | |
|   return 0;
 | |
| }
 |