27eb98b510
Files correlati : Ricompilazione Demo : [ ] Commento : Prima versione delle stampe ordini: stampa per numero/data, per cli/fo, per agente, per Articolo git-svn-id: svn://10.65.10.50/trunk@6780 c028cbd2-c16b-5b4b-a496-9718f37d4682
37 lines
741 B
C++
Executable File
37 lines
741 B
C++
Executable File
// 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;
|
|
}
|