campo-sirio/mr/mr2300.cpp
alex 16258dc547 Patch level : xx.502
Files correlati     :
Ricompilazione Demo : [ ]
Commento            : Riportata la versione 10.05 patch 502


git-svn-id: svn://10.65.10.50/trunk@8388 c028cbd2-c16b-5b4b-a496-9718f37d4682
1999-07-16 14:59:11 +00:00

42 lines
648 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()
{
if (TSkeleton_application::create())
{
openfiles();
_m = new TMSP_mask();
_m->field(F_MSCHEDULEPLAN).set("X");
return TRUE;
}
return FALSE;
}
int mr2300(int argc, char* argv[])
{
TMSP_app a;
a.run(argc, argv, "Master Schedule Planning");
return 0;
}