campo-sirio/fe/fe0300.cpp
guy ce559da866 Patch level :
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :
Corretta gestione clinti corrispondenti a persone fisiche


git-svn-id: svn://10.65.10.50/branches/R_10_00@22489 c028cbd2-c16b-5b4b-a496-9718f37d4682
2011-11-14 17:29:27 +00:00

61 lines
1.3 KiB
C++

#include <applicat.h>
#include <automask.h>
#include "fe0100a.h"
///////////////////////////////////////////////////////////
// TSomma_spesometro_msk
///////////////////////////////////////////////////////////
class TSomma_spesometro_msk : public TAutomask
{
protected:
virtual bool on_field_event(TOperable_field& o, TField_event e, long jolly);
public:
TSomma_spesometro_msk() : TAutomask("fe0300a") { load_profile(); }
~TSomma_spesometro_msk() { save_profile(); }
};
bool TSomma_spesometro_msk::on_field_event(TOperable_field& o, TField_event e, long jolly)
{
switch (o.dlg())
{
case F_OUTFOLDER:
if (e == fe_init || e == fe_modify)
{
}
break;
default:
break;
}
return true;
}
///////////////////////////////////////////////////////////
// TSomma_spesometro_app
///////////////////////////////////////////////////////////
class TSomma_spesometro_app : public TSkeleton_application
{
public:
virtual void main_loop();
};
void TSomma_spesometro_app::main_loop()
{
TSomma_spesometro_msk msk;
msk.run();
}
///////////////////////////////////////////////////////////
// main
///////////////////////////////////////////////////////////
int fe0300(int argc, char* argv[])
{
TSomma_spesometro_app app;
app.run(argc, argv, TR("Somma file Spesometro"));
return 0;
}