SearchMethod.h
上传用户:sunh8215
上传日期:2010-02-13
资源大小:1616k
文件大小:1k
源码类别:

酒店行业

开发平台:

Visual C++

  1. // SearchMethod.h: interface for the CSearchMethod class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_)
  5. #define AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CSearchMethod  
  10. {
  11. public:
  12. bool MatchingString(const char* lpszSour, const char* lpszMatch, bool bMatchCase=false);
  13. int FindingString(const char* lpszSour, const char* lpszFind, int nStart = 0);
  14. bool EnableMatches(CString str1, CString str2);
  15. bool IsMatchString(CString str1, CString str2);//字符窜是否匹配
  16. bool CheckString(CString str);//字符窜是否合法
  17. CSearchMethod();
  18. virtual ~CSearchMethod();
  19. //属性
  20. int serial[50];//保存序列号
  21. char serialchar[50];//保存字符的数组
  22. };
  23. #endif // !defined(AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_)