Files correlati : Ricompilazione Demo : [ ] Commento :nuovi nomi dei programmi di CA git-svn-id: svn://10.65.10.50/trunk@12555 c028cbd2-c16b-5b4b-a496-9718f37d4682
41 lines
939 B
C++
Executable File
41 lines
939 B
C++
Executable File
// gestione files Contabilita' Analitica: CENTRI DI COSTO
|
|
#include <execp.h>
|
|
#include <relapp.h>
|
|
|
|
#include "calib01.h"
|
|
#include "ca0500a.h"
|
|
|
|
/*//identificatori dei campi automatici delle maschere (messi qui per evitare di ripeterli nel .h
|
|
//di ogni maschera)
|
|
#define F_KEY1 101
|
|
#define F_KEY2 102
|
|
#define F_KEY3 103
|
|
#define F_KEY4 104
|
|
#define F_DES1 111
|
|
#define F_DES2 112
|
|
#define F_DES3 113
|
|
#define F_DES4 114*/
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
//APPLICAZIONE
|
|
////////////////////////////////////////////////////////////////////////
|
|
// applicazione per la gestione dei Centri di Costo
|
|
class TCdC_app : public TAnal_app
|
|
{
|
|
protected:
|
|
virtual bool create();
|
|
};
|
|
|
|
bool TCdC_app::create()
|
|
{
|
|
return TCdC_app::create();
|
|
}
|
|
|
|
int ca0500(int argc, char* argv[])
|
|
{
|
|
TCdC_app a;
|
|
a.run(argc, argv, TR("Centri di Costo"));
|
|
return 0;
|
|
}
|
|
|