#include "StdAfx.h" #include "CreaterCatchMarkFlow.h" #include "GlobalFunction.h" #include "WorkCmdMovePlatformXY.h" #include "CameraKeyence.h" #include "WorkCmdCameraCatch.h" #include "ProductMgr.h" #include "ObjComponentMgr.h" CCreaterCatchMarkFlow::CCreaterCatchMarkFlow(const CString &str) :CCreaterWorkCmd(str) { } CCreaterCatchMarkFlow::~CCreaterCatchMarkFlow(void) { } void CCreaterCatchMarkFlow::Creat() { //自动排布时不要抓取 if(gObjComponentMgr->IsAutoArray()) return; vector &ProductVec = gProductMgr->GetProductVec(); vector::iterator iter = ProductVec.begin(); vector::iterator iter_end = ProductVec.end(); for(;iter!=iter_end;iter++) { CreatExt(*iter); } } void CCreaterCatchMarkFlow::CreatExt(CProduct &Product) { }