Files correlati : Ricompilazione Demo : [ ] Commento : Riportate le modifiche dalla versione 2.1 222 Si puo cominciare a fare il primo CD git-svn-id: svn://10.65.10.50/trunk@12708 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			388 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
 | 
						|
#include "ce0.h"
 | 
						|
 | 
						|
int main(int argc,char** argv)
 | 
						|
{
 | 
						|
  const int r = (argc > 1) ? (argv[1][1]-'0') : 0;
 | 
						|
  switch (r)
 | 
						|
  {
 | 
						|
  case  3: ce0400(argc,argv); break; // Parametri cespiti
 | 
						|
  case  4: ce0500(argc,argv); break; // Anagrafica cespiti
 | 
						|
  case  8: ce0900(argc,argv); break; // Conversione cespiti
 | 
						|
  default: ce0100(argc,argv); break; // Tabelle cespiti
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 |