Files correlati : ef0.exe ef0100a.msk eftbman.msk f98.trr ef0a00a.msk Commento : Supporto per gli IBAN esteri negli effetti
25 lines
482 B
C++
Executable File
25 lines
482 B
C++
Executable File
#include <automask.h>
|
|
#include <modtbapp.h>
|
|
#include "eftbman.h"
|
|
|
|
class TMandati_mask : public TIBAN_mask
|
|
{
|
|
public:
|
|
TMandati_mask() : TIBAN_mask("eftbman", F_STATO, F_CHECK, F_CIN, F_ABI, F_CAB, F_CONTO, F_IBAN, F_BBAN) {}
|
|
};
|
|
|
|
class TMandati_app : public TTable_module_application
|
|
{
|
|
TMask* user_create_mask() { return new TMandati_mask(); }
|
|
|
|
public:
|
|
|
|
};
|
|
|
|
int ef0200(int argc, char* argv[])
|
|
{
|
|
TMandati_app a;
|
|
a.run(argc, argv, TR("Tabelle modulo Effetti"));
|
|
return 0;
|
|
}
|