Converter.h
上传用户:hell82222
上传日期:2013-12-19
资源大小:1872k
文件大小:1k
- // Converter.h: interface for the CConverter class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_CONVERTER_H__289B6C30_3300_4516_9491_2AF54AF26974__INCLUDED_)
- #define AFX_CONVERTER_H__289B6C30_3300_4516_9491_2AF54AF26974__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- typedef struct tagFONTMAPITEM
- {
- tagFONTMAPITEM(CString strFontName,double dScale,double dhegithscale)
- {
- m_strFontName=strFontName;
- m_dScale=dScale;
- m_dhegithscale=dhegithscale;
- }
- CString m_strFontName;
- double m_dScale;
- double m_dhegithscale;
- }FONTMAPITEM;
- class CConverter
- {
- public:
- CConverter();
- virtual ~CConverter();
- public:
- void calculate_convert_ii(CString& strSource);
- void calculate_finddir(double angle,double pt[]);
- static CMapStringToPtr m_mapFont;
- };
- #endif // !defined(AFX_CONVERTER_H__289B6C30_3300_4516_9491_2AF54AF26974__INCLUDED_)