campo-sirio/mr/mr2.cpp
alex cbb608d183 Patch level : xx.811
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
2000-05-05 15:25:49 +00:00

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;
}