campo-sirio/vd/vd0600.cpp
alex 046e2c06cb Patch level : 4.0 649
Ricompilazione Demo : [ ]
Commento            :

Riportata la versione 3.1 patch 848


git-svn-id: svn://10.65.10.50/trunk@14993 c028cbd2-c16b-5b4b-a496-9718f37d4682
2007-03-06 16:37:44 +00:00

40 lines
617 B
C++
Executable File

#include <applicat.h>
#include "vd0600a.h"
#include "vdlib.h"
class TChiusura_turno_app : public TSkeleton_application
{
public:
virtual bool user_create( );
virtual void main_loop();
virtual bool user_destroy( );
TChiusura_turno_app() { }
virtual ~TChiusura_turno_app( ) { }
};
bool TChiusura_turno_app::user_create( )
{
return true;
}
bool TChiusura_turno_app::user_destroy( )
{
return true;
}
void TChiusura_turno_app::main_loop()
{
TTurno_vendita t;
t.chiudi();
}
int vd0600(int argc, char* argv[])
{
TChiusura_turno_app appc;
appc.run(argc, argv, TR("Chiusura turno"));
return 0;
}