ChatFilter.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // ChatFilter.h: interface for the CChatFilter class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHATFILTER_H__4D8459D3_39B0_454E_95B2_7B1D91C10B36__INCLUDED_)
  5. #define AFX_CHATFILTER_H__4D8459D3_39B0_454E_95B2_7B1D91C10B36__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "FilterTextLib.h"
  10. class CChatFilter  
  11. {
  12. public:
  13. CChatFilter();
  14. virtual ~CChatFilter();
  15. public:
  16. BOOL Initialize();
  17. BOOL Uninitialize();
  18. BOOL IsTextPass(LPCTSTR text);
  19. private:
  20. ITextFilter* m_pTextFilter;
  21. };
  22. #endif // !defined(AFX_CHATFILTER_H__4D8459D3_39B0_454E_95B2_7B1D91C10B36__INCLUDED_)