You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#pragma once
|
|
|
|
|
#include "workcmd.h"
|
|
|
|
|
#include "Motor.h"
|
|
|
|
|
#include "MarkArea.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//<2F><EFBFBD><F1BEB5B1><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(pci <20><>)
|
|
|
|
|
class CWorkCmdMarkArea :public CWorkCmd
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CWorkCmdMarkArea(CMarkArea &m);
|
|
|
|
|
~CWorkCmdMarkArea(void);
|
|
|
|
|
virtual bool Excute();
|
|
|
|
|
virtual void WirteLog();
|
|
|
|
|
void SetbSelMark(bool b){m_bSelMark = b;};
|
|
|
|
|
void CreatWorkDataByTimes(int times);
|
|
|
|
|
private:
|
|
|
|
|
CMarkArea &m_MarkArea;
|
|
|
|
|
bool m_bSelMark;//<2F>Ƿ<EFBFBD>Ϊѡ<CEAA><D1A1><EFBFBD>ӹ<EFBFBD>
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|