//ab0 sono stati aggiunti dei commenti //ab0100.cpp è stato commentato tutto quello che riguarda il livello di struttura //in quanto questo campo non viene più utilizzato ed è stato aggiornato ab0200.h //la maschera è stata modificata: aggiunto il compo "conto sospeso" e tolto quello del //livello di struttura //AB1 esegue la stampa delle tabelle e del piano dei conti //sono state aggiunti i relativi file delle maschere git-svn-id: svn://10.65.10.50/trunk@5434 c028cbd2-c16b-5b4b-a496-9718f37d4682
31 lines
612 B
C++
Executable File
31 lines
612 B
C++
Executable File
#include <xvt.h>
|
|
#include <checks.h>
|
|
|
|
#include "ab0.h"
|
|
|
|
#define usage "Error - usage : %s -{0|1|2|3|4|5}"
|
|
|
|
int main(int argc,char** argv)
|
|
{
|
|
int n = (argc > 1) ? atoi(argv[1]+1) : -1;
|
|
|
|
switch (n)
|
|
{
|
|
case 0:
|
|
ab0100(argc,argv); break; //Sintassi ab0 -0 tab_name -utente
|
|
case 1:
|
|
ab0200(argc,argv); break; //Sintassi ab0 -1 -utente
|
|
case 2:
|
|
//ab0300(argc,argv); break;
|
|
// case 3:
|
|
// m71310(argc,argv); break;
|
|
// case 4:
|
|
// m71295(argc,argv); break;
|
|
// case 5:
|
|
// m71230(argc,argv); break;
|
|
default:
|
|
error_box(usage, argv[0]) ;
|
|
}
|
|
return 0;
|
|
}
|