37 lines
741 B
C++
37 lines
741 B
C++
|
// 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()
|
||
|
{
|
||
|
sorry_box("Programma non ancora implementato.");
|
||
|
}
|
||
|
|
||
|
int or1300(int argc, char** argv)
|
||
|
{
|
||
|
TStampa_statistiche_consegna a;
|
||
|
a.run(argc,argv,"Stampa tempi di consegna");
|
||
|
return 0;
|
||
|
}
|