Files correlati : Ricompilazione Demo : [ ] Commento :corretti errori di riporto git-svn-id: svn://10.65.10.50/trunk@14643 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			30 lines
		
	
	
		
			619 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			619 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <applicat.h>
 | 
						|
 | 
						|
#include "velib07.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
 | 
						|
{
 | 
						|
  TDocument_report* rep = new TDocument_report; 
 | 
						|
  rep->load(name);
 | 
						|
  return rep;
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
int ve1400(int argc, char* argv[])
 | 
						|
{     
 | 
						|
  TPeterParker_app app;
 | 
						|
  app.run(argc, argv, TR("Stampa Report Vendite"));
 | 
						|
  return 0;
 | 
						|
} |