MIMEContentAgent.cpp
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. // MIMEContentAgent.cpp: implementation of the CMIMEContentAgent class.
  2. // Author: Wes Clyburn (clyburnw@enmu.edu)
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "MIMEContentAgent.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char THIS_FILE[]=__FILE__;
  9. #define new DEBUG_NEW
  10. #endif
  11. //////////////////////////////////////////////////////////////////////
  12. // Construction/Destruction
  13. //////////////////////////////////////////////////////////////////////
  14. CMIMEContentAgent::CMIMEContentAgent(int nMIMEType)
  15. {
  16. m_nMIMEType = nMIMEType;
  17. }
  18. CMIMEContentAgent::~CMIMEContentAgent()
  19. {
  20. }
  21. ///<summary>
  22. ///   Query the type of the object
  23. ///</summary>
  24. BOOL CMIMEContentAgent::QueryType(int nContentType)
  25. {
  26. return nContentType == m_nMIMEType ? TRUE : FALSE;
  27. }