Files correlati : ci0.exe ci2.exe Ricompilazione Demo : [ ] Commento : Riclassificazioni cnti da non compilare ora git-svn-id: svn://10.65.10.50/branches/R_10_00@20780 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			29 lines
		
	
	
		
			620 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			620 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <applicat.h>
 | 
						|
 | 
						|
#include "rilib01.h"
 | 
						|
#include "../ba/ba8500.h"
 | 
						|
 | 
						|
///////////////////////////////////////////////////////////
 | 
						|
// TPeterParker_app
 | 
						|
///////////////////////////////////////////////////////////
 | 
						|
 | 
						|
class TPeterParker_app : public TKlarkKent_app
 | 
						|
{
 | 
						|
protected:
 | 
						|
  virtual TReport* create_report(const char* name) const;
 | 
						|
};
 | 
						|
 | 
						|
TReport* TPeterParker_app::create_report(const char* name) const
 | 
						|
{
 | 
						|
  TRicl_report* rep = new TRicl_report; 
 | 
						|
  rep->load(name);
 | 
						|
  return rep;
 | 
						|
}
 | 
						|
 | 
						|
int ri1100(int argc, char* argv[])
 | 
						|
{     
 | 
						|
  TPeterParker_app app;
 | 
						|
  app.run(argc, argv, TR("Stampa Report riclassificazioni"));
 | 
						|
  return 0;
 | 
						|
}
 |