cbb608d183
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione 1.5 fino alla patch 811 git-svn-id: svn://10.65.10.50/trunk@8985 c028cbd2-c16b-5b4b-a496-9718f37d4682
23 lines
413 B
C++
Executable File
23 lines
413 B
C++
Executable File
#include <xvt.h>
|
|
|
|
#include "mr2.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int a = argc > 1 ? (argv[1][1] - '0') : 0;
|
|
switch (a)
|
|
{
|
|
case 1: // master schedule planning
|
|
mr2200(argc,argv); break;
|
|
case 2: // generic planning
|
|
mr2300(argc,argv); break;
|
|
case 3: // generic planning
|
|
mr2400(argc,argv); break;
|
|
case 0: // MRP
|
|
default:
|
|
mr2100(argc,argv); break;
|
|
}
|
|
exit(0);
|
|
return 0;
|
|
}
|