You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
295 B
13 lines
295 B
|
|
class CINetCodeDetector
|
|
{
|
|
public:
|
|
CINetCodeDetector() {}
|
|
virtual ~CINetCodeDetector() {}
|
|
int DetectStringA(LPCSTR lpSrcStr, int cchSrc);
|
|
|
|
protected:
|
|
virtual BOOL DetectChar(UCHAR tc) = 0;
|
|
virtual BOOL CleanUp() = 0;
|
|
virtual int GetDetectedCodeSet() = 0;
|
|
};
|