campo-sirio/mr/mr2300.cpp
alex c8d2a302e3 Patch level : 02.0.369
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :
Riportata la versione AGA 1.7 patch 349


git-svn-id: svn://10.65.10.50/trunk@10708 c028cbd2-c16b-5b4b-a496-9718f37d4682
2002-12-20 16:15:03 +00:00

38 lines
606 B
C++
Executable File

#include "mr2200.h"
#include "mr2200a.h"
class TMSP_mask : public TPlanning_mask
{
public:
TMSP_mask();
virtual ~TMSP_mask() { }
};
TMSP_mask::TMSP_mask()
: TPlanning_mask("mr2300a")
{
// init();
}
class TMSP_app : public TPlanning_app
{
protected:
virtual TPlanning_mask& mask() {return *_m;}
virtual bool create();
};
bool TMSP_app::create()
{
openfiles();
_m = new TMSP_mask();
_m->field(F_MSCHEDULEPLAN).set("X");
return TSkeleton_application::create();
}
int mr2300(int argc, char* argv[])
{
TMSP_app a;
a.run(argc, argv, "Master Schedule Planning");
return 0;
}