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.
|
#pragma once
|
|
#include "createrworkcmd.h"
|
|
|
|
//根据workarea 内的obj 数据来创建切割工作流程
|
|
class CCreaterCutFlow :public CCreaterWorkCmd
|
|
{
|
|
public:
|
|
CCreaterCutFlow(const CString &str);
|
|
~CCreaterCutFlow(void);
|
|
virtual void Creat();
|
|
private:
|
|
void CreatExt(vector<vector<Dbxy>> &Vec);
|
|
};
|
|
|