campo-sirio/ri/ri1100.cpp
alex db19dfd129 Patch level : 10,0 nopatch
Files correlati     : ci0.exe ci2.exe
Ricompilazione Demo : [ ]
Commento            :


Riclassificazioni cnti  da non compilare ora


git-svn-id: svn://10.65.10.50/branches/R_10_00@20780 c028cbd2-c16b-5b4b-a496-9718f37d4682
2010-08-11 00:46:50 +00:00

29 lines
620 B
C++
Executable File

#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;
}