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.

36 lines
840 B
C++

#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<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)
{
}