Files correlati : or1.exe Ricompilazione Demo : [ ] Commento : Bug 0000136 Implementare la gestione multilingua git-svn-id: svn://10.65.10.50/trunk@12090 c028cbd2-c16b-5b4b-a496-9718f37d4682
37 lines
749 B
C++
Executable File
37 lines
749 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(TR("Programma non ancora implementato."));
|
|
}
|
|
|
|
int or1300(int argc, char** argv)
|
|
{
|
|
TStampa_statistiche_consegna a;
|
|
a.run(argc,argv,TR("Stampa tempi di consegna"));
|
|
return 0;
|
|
}
|