1997-05-23 15:11:42 +00:00
|
|
|
#include <applicat.h>
|
2006-04-13 17:56:02 +00:00
|
|
|
#include <report.h>
|
|
|
|
|
|
|
|
#include "../ba/ba8500.h"
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// TReport_mag
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class TReport_mag : public TReport
|
1997-05-23 15:11:42 +00:00
|
|
|
{
|
2006-04-13 17:56:02 +00:00
|
|
|
public:
|
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
// TStampa_mag
|
|
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class TStampa_mag : public TKlarkKent_app
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
virtual TReport* create_report(const char* name) const;
|
|
|
|
};
|
|
|
|
|
|
|
|
TReport* TStampa_mag::create_report(const char* name) const
|
|
|
|
{
|
|
|
|
TReport_mag* rep = new TReport_mag;
|
|
|
|
rep->load(name);
|
|
|
|
return rep;
|
1997-05-23 15:11:42 +00:00
|
|
|
}
|
2006-04-13 17:56:02 +00:00
|
|
|
|
|
|
|
int mg3400(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
TStampa_mag app;
|
|
|
|
app.run(argc, argv, TR("Stampa Report Magazzino"));
|
|
|
|
return 0;
|
|
|
|
}
|