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.
18 lines
574 B
C++
18 lines
574 B
C++
#pragma once
|
|
#include "GlobalDefine.h"
|
|
#include "Module.h"
|
|
|
|
//工作数据管理(单列)
|
|
class CWorkDataMgr:public CModule
|
|
{
|
|
public:
|
|
CWorkDataMgr(void);
|
|
~CWorkDataMgr(void);
|
|
virtual CMFCPropertyGridProperty *CreatGridProperty();
|
|
virtual MODULE GetModuleType(){return _WORK_DATA_PROP;};
|
|
bool IsbTempMode(){return m_bTempMode;};
|
|
void GetTempDataByPenNum(vector<vector<Dbxy>> &DataVec,int PenNum);
|
|
private:
|
|
bool m_bTempMode;//模板模式,在这个模式下圆的数据为圆心,通过笔参数来查找模板
|
|
};
|
|
extern CWorkDataMgr *gWorkDataMgr; |