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.

23 lines
500 B
C++

#pragma once
#include "workcmd.h"
#include "Motor.h"
#include "MarkArea.h"
//振镜标记一个工作区域(pci 卡)
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;//是否为选择加工
};