campo-sirio/vd/vd0500.cpp
alex 5cb56fdb07 Patch level : 10.0 163
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :

Riportata la versione 3.2 patch 1262


git-svn-id: svn://10.65.10.50/trunk@17628 c028cbd2-c16b-5b4b-a496-9718f37d4682
2008-11-14 00:01:46 +00:00

41 lines
628 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(true);
}
int vd0500(int argc, char* argv[])
{
TApertura_turno_app appc;
appc.run(argc, argv, TR("Apertura turno"));
return 0;
}