campo-sirio/vd/vd0500.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

41 lines
629 B
C++
Executable File

#include <applicat.h>
#include "vd0500a.h"
#include "vdlib.h"
class TApertura_turno_app : public TSkeleton_application
{
protected:
virtual bool user_create( );
virtual bool user_destroy( );
virtual void main_loop();
public:
TApertura_turno_app() { }
virtual ~TApertura_turno_app( ) { }
};
bool TApertura_turno_app::user_create()
{
return true;
}
bool TApertura_turno_app::user_destroy()
{
return true;
}
void TApertura_turno_app::main_loop()
{
TTurno_vendita t;
t.apri(false);
}
int vd0500(int argc, char* argv[])
{
TApertura_turno_app appc;
appc.run(argc, argv, TR("Apertura turno"));
return 0;
}