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.
27 lines
557 B
C++
27 lines
557 B
C++
//////////////////////////////////////////////////////////////////////////////
|
|
//文件: DFDraw补充绘图元素接口类
|
|
//主要功能:
|
|
//
|
|
//程序编写: 2005-12-07
|
|
//
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
#include "fmn.h"
|
|
#include "DrawLocal/FileMapping.h"
|
|
|
|
class AFX_EXT_CLASS CFmnFromMapping :
|
|
public CFMN
|
|
{
|
|
public:
|
|
CFmnFromMapping(void);
|
|
virtual ~CFmnFromMapping(void);
|
|
|
|
virtual int Create(CString m_fx, CString m_fy);
|
|
|
|
CFileMapping* m_pMappingX;
|
|
CFileMapping* m_pMappingY;
|
|
BOOL IsCanValueXY(void);
|
|
};
|