campo-sirio/cg/cg7100.cpp
guy cc8cff00df Patch level : 10.0 1050
Files correlati     : cg2100c.msk cg7200a.rep cg7200a.msk cgmenu.men
Ricompilazione Demo : [ ]
Commento            :
Modificata stampa movimenti per imponibile limite
Aggiunta a menu gestione modulo FE


git-svn-id: svn://10.65.10.50/branches/R_10_00@22376 c028cbd2-c16b-5b4b-a496-9718f37d4682
2011-07-06 15:36:32 +00:00

28 lines
580 B
C++
Executable File

#include <applicat.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;
}