1998-06-25 07:29:35 +00:00
|
|
|
// Stampa statistiche sui tempi di consegna
|
|
|
|
#include <applicat.h>
|
|
|
|
|
|
|
|
class TStampa_statistiche_consegna : public TSkeleton_application
|
|
|
|
{
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool create();
|
|
|
|
virtual bool destroy();
|
|
|
|
virtual void main_loop();
|
|
|
|
public:
|
|
|
|
TStampa_statistiche_consegna() {};
|
|
|
|
virtual ~TStampa_statistiche_consegna() {};
|
|
|
|
};
|
|
|
|
|
|
|
|
bool TStampa_statistiche_consegna::create()
|
|
|
|
{
|
|
|
|
return TSkeleton_application::create();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TStampa_statistiche_consegna::destroy()
|
|
|
|
{
|
|
|
|
return TSkeleton_application::destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TStampa_statistiche_consegna::main_loop()
|
|
|
|
{
|
2004-05-18 13:07:58 +00:00
|
|
|
sorry_box(TR("Programma non ancora implementato."));
|
1998-06-25 07:29:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int or1300(int argc, char** argv)
|
|
|
|
{
|
|
|
|
TStampa_statistiche_consegna a;
|
2004-05-18 13:07:58 +00:00
|
|
|
a.run(argc,argv,TR("Stampa tempi di consegna"));
|
1998-06-25 07:29:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|