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.
|
|
|
|
#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()
|
|
|
|
|
{
|
|
|
|
|
//<2F>Զ<EFBFBD><D4B6>Ų<EFBFBD>ʱ<EFBFBD><CAB1>Ҫץȡ
|
|
|
|
|
if(gObjComponentMgr->IsAutoArray())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
vector<CProduct> &ProductVec = gProductMgr->GetProductVec();
|
|
|
|
|
vector<CProduct>::iterator iter = ProductVec.begin();
|
|
|
|
|
vector<CProduct>::iterator iter_end = ProductVec.end();
|
|
|
|
|
for(;iter!=iter_end;iter++)
|
|
|
|
|
{
|
|
|
|
|
CreatExt(*iter);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
void CCreaterCatchMarkFlow::CreatExt(CProduct &Product)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|