29 lines
620 B
C++
29 lines
620 B
C++
|
#include <applicat.h>
|
||
|
|
||
|
#include "rilib01.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
|
||
|
{
|
||
|
TRicl_report* rep = new TRicl_report;
|
||
|
rep->load(name);
|
||
|
return rep;
|
||
|
}
|
||
|
|
||
|
int ri1100(int argc, char* argv[])
|
||
|
{
|
||
|
TPeterParker_app app;
|
||
|
app.run(argc, argv, TR("Stampa Report riclassificazioni"));
|
||
|
return 0;
|
||
|
}
|