Converter.h
上传用户:hell82222
上传日期:2013-12-19
资源大小:1872k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // Converter.h: interface for the CConverter class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CONVERTER_H__289B6C30_3300_4516_9491_2AF54AF26974__INCLUDED_)
  5. #define AFX_CONVERTER_H__289B6C30_3300_4516_9491_2AF54AF26974__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. typedef struct tagFONTMAPITEM
  10. {
  11. tagFONTMAPITEM(CString strFontName,double dScale,double dhegithscale)
  12. {
  13. m_strFontName=strFontName;
  14. m_dScale=dScale;
  15. m_dhegithscale=dhegithscale;
  16. }
  17. CString m_strFontName;
  18. double  m_dScale;
  19. double m_dhegithscale;
  20. }FONTMAPITEM;
  21. class CConverter  
  22. {
  23. public:
  24. CConverter();
  25. virtual ~CConverter();
  26. public:
  27. void calculate_convert_ii(CString& strSource);
  28. void calculate_finddir(double angle,double pt[]);
  29. static CMapStringToPtr m_mapFont;
  30. };
  31. #endif // !defined(AFX_CONVERTER_H__289B6C30_3300_4516_9491_2AF54AF26974__INCLUDED_)