Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 3.1 patch 766 git-svn-id: svn://10.65.10.50/trunk@14628 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			20 lines
		
	
	
		
			367 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			367 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
 | 
						|
#include "cgp4.h"
 | 
						|
 | 
						|
int main(int argc,char** argv)
 | 
						|
{
 | 
						|
  const int s = (argc > 1) ? argv[1][1] - '0' : 0;
 | 
						|
 | 
						|
  switch (s)
 | 
						|
  { 
 | 
						|
  case 1 :
 | 
						|
		cgp4200(argc,argv) ; break;  // Importa stipendi in prima nota (OMASA)
 | 
						|
  default: cgp4100(argc,argv) ; break;  // Importazione clienti (GSA/CODFIDI)
 | 
						|
 | 
						|
  }                                  
 | 
						|
  exit(0);
 | 
						|
  return 0;
 | 
						|
}
 | 
						|
 |