Files correlati : Ricompilazione Demo : [ ] Commento : correzioni minime su cg7 git-svn-id: svn://10.65.10.50/branches/R_10_00@21852 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			30 lines
		
	
	
		
			621 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			621 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
#include <applicat.h>
 | 
						|
#include <report.h>
 | 
						|
#include <strings.h>
 | 
						|
 | 
						|
#include "../ba/ba8500.h"
 | 
						|
 | 
						|
///////////////////////////////////////////////////////////
 | 
						|
// TBruceWayne_app
 | 
						|
///////////////////////////////////////////////////////////
 | 
						|
 | 
						|
class TBruceWayne_app : public TKlarkKent_app
 | 
						|
{
 | 
						|
protected:
 | 
						|
  virtual TReport* create_report(const char* name) const;
 | 
						|
};
 | 
						|
 | 
						|
TReport* TBruceWayne_app::create_report(const char* name) const
 | 
						|
{
 | 
						|
  TReport* rep = new TReport; 
 | 
						|
  rep->load(name);
 | 
						|
  return rep;
 | 
						|
}
 | 
						|
 | 
						|
int cg7100(int argc, char* argv[])
 | 
						|
{     
 | 
						|
  TBruceWayne_app app;
 | 
						|
  app.run(argc, argv, TR("Stampa Report Contabilita'"));
 | 
						|
  return 0;
 | 
						|
}
 |