16 lines
311 B
C++
16 lines
311 B
C++
|
#include <xvt.h>
|
||
|
|
||
|
#include "ps1001.h"
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
int n = argc > 1 ? atoi(argv[1]+1) : 0;
|
||
|
switch(n)
|
||
|
{
|
||
|
case 0: ps1001100(argc, argv); break; //Importazione movimento di analitica da righe in *.csv (DINAMICA)
|
||
|
default:
|
||
|
ps1001100(argc, argv); break;
|
||
|
}
|
||
|
exit(0);
|
||
|
return 0;
|
||
|
}
|