campo-sirio/ve/ve1400.cpp
guy b50bf4e4ca Patch level : 10.0
Files correlati     : ve0 ve1
Ricompilazione Demo : [ ]
Commento            :
Aggiornate barre


git-svn-id: svn://10.65.10.50/trunk@16745 c028cbd2-c16b-5b4b-a496-9718f37d4682
2008-06-13 08:45:21 +00:00

29 lines
618 B
C++
Executable File

#include <applicat.h>
#include "velib07.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
{
TDocument_report* rep = new TDocument_report;
rep->load(name);
return rep;
}
int ve1400(int argc, char* argv[])
{
TPeterParker_app app;
app.run(argc, argv, TR("Stampa Report Vendite"));
return 0;
}