campo-sirio/ca/ca3500.cpp
luca 9514fd1dab Patch level :10.0 516
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :
0001478: Manca una stampa delle tabelle di ripartizione
Descrizione  Manca una stampa delle tabelle di ripartizione : è possibile averla?
Passaggi per riprodurre l'anomalia
Informazioni addizionali  Avvisare Habilita se verrà fatta.


git-svn-id: svn://10.65.10.50/trunk@19630 c028cbd2-c16b-5b4b-a496-9718f37d4682
2009-11-16 15:56:45 +00:00

36 lines
836 B
C++
Executable File

#include <applicat.h>
#include "calib02.h"
#include "../ba/ba8500.h"
class TGeneric_anal_report : public TAnal_report
{
protected:
virtual bool use_mask() { return true; }
};
///////////////////////////////////////////////////////////
// TBruce_wayne_app
///////////////////////////////////////////////////////////
class TBruce_wayne_app : public TKlarkKent_app
{
protected:
virtual TReport* create_report(const char* name) const;
virtual const char * extra_modules() const {return "cm";} //funziona anche con autorizzazione CM
};
TReport* TBruce_wayne_app::create_report(const char* name) const
{
TGeneric_anal_report* rep = new TGeneric_anal_report;
rep->load(name);
return rep;
}
int ca3500(int argc, char* argv[])
{
TBruce_wayne_app app;
app.run(argc, argv, TR("Stampa Report Analitica"));
return 0;
}