?? base64str.h
字號:
#ifndef BASE64STR_H
#define BASE64STR_H
class Base64StrDecoder
{
public:
Base64StrDecoder(char *string);
void Put(const unsigned char* inString, unsigned int length);
void InputFinished();
char buffer[255];
int bufpos;
private:
static int ConvToNumber(unsigned char inByte);
void DecodeQuantum();
void Put(unsigned char inByte);
int inBufSize;
unsigned char inBuf[4];
};
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -