| | |
| | | #pragma once |
| | | #include "ServoCommo.h" |
| | | #include "Context.h" |
| | | #include "CEFEM.h" |
| | | |
| | | |
| | | namespace SERVO { |
| | |
| | | std::string getSimpleDescription() const; |
| | | void setContext(CContext* pContext); |
| | | CContext* getContext(); |
| | | void setEFEM(CEFEM* pEFEM); |
| | | void setRobotTransferParam(int seq, int armNo, int fromPos, int toPos, int fromSlot, int toSlot); |
| | | ROBOT_CMD_PARAM& getRobotCmdParam(); |
| | | time_t getCreateTime(); |
| | |
| | | time_t getStoredTime(); |
| | | time_t getFinishTime(); |
| | | ROBOT_TASK_STATE getState(); |
| | | void run(); |
| | | void completed(); |
| | | void error(); |
| | | void abort(); |
| | |
| | | time_t m_timeFinish; /* 结束时间 */ |
| | | ROBOT_CMD_PARAM m_robotCmdParam; /* 参数 */ |
| | | CContext* m_pContext; |
| | | CEFEM* m_pEFEM; |
| | | }; |
| | | } |