campo-sirio/cg/cg7100.cpp
luca 01f69a6474 Patch level :
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :


git-svn-id: svn://10.65.10.50/branches/R_10_00@21811 c028cbd2-c16b-5b4b-a496-9718f37d4682
2011-03-21 16:57:29 +00:00

31 lines
656 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);
const TFilename rep_name = name;
return rep;
}
int cg7100(int argc, char* argv[])
{
TBruceWayne_app app;
app.run(argc, argv, TR("Stampa Report Contabilita'"));
return 0;
}