Files correlati : cg1.exe cg3.exe Ricompilazione Demo : [ ] Commento : Apertura / Chiusura a contailità separata git-svn-id: svn://10.65.10.50/branches/R_10_00@22389 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			18 lines
		
	
	
		
			343 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			343 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <xvt.h>
 | 
						|
#include "np0.h"
 | 
						|
 | 
						|
int main(int argc, char** argv)
 | 
						|
{                                             
 | 
						|
  const char op = argc < 2 ? '0' : argv[1][1];
 | 
						|
  switch (op)
 | 
						|
  {
 | 
						|
    case '1':
 | 
						|
      np0200(argc,argv); // Apertura /Chiusura
 | 
						|
      break;
 | 
						|
    default:
 | 
						|
      np0100(argc,argv); // Tabelle di modulo
 | 
						|
      break;
 | 
						|
  }
 | 
						|
  return 0;
 | 
						|
}
 |