SearchMethod.h
上传用户:sunh8215
上传日期:2010-02-13
资源大小:1616k
文件大小:1k
- // SearchMethod.h: interface for the CSearchMethod class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_)
- #define AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class CSearchMethod
- {
- public:
- bool MatchingString(const char* lpszSour, const char* lpszMatch, bool bMatchCase=false);
- int FindingString(const char* lpszSour, const char* lpszFind, int nStart = 0);
- bool EnableMatches(CString str1, CString str2);
- bool IsMatchString(CString str1, CString str2);//字符窜是否匹配
- bool CheckString(CString str);//字符窜是否合法
- CSearchMethod();
- virtual ~CSearchMethod();
- //属性
- int serial[50];//保存序列号
- char serialchar[50];//保存字符的数组
- };
- #endif // !defined(AFX_SEARCHMETHOD_H__7F729996_60A1_4F7C_A570_FBA99FFB122E__INCLUDED_)