63ac8f5406
Files correlati : Ricompilazione Demo : [ ] Commento : Riportata la versione aga 1.7 patch 126 sul main trunk git-svn-id: svn://10.65.10.50/trunk@9819 c028cbd2-c16b-5b4b-a496-9718f37d4682
42 lines
650 B
C++
Executable File
42 lines
650 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;
|
|
}
|