📄 demodata.h
字号:
#ifndef __DEMODATA_H__
#define __DEMODATA_H__
#include "CryptorTool1.h"
class CDemoData {
public:
CDemoData(CCryptorTool1 *pCT=NULL);
~CDemoData();
char Name[12];
int Code;
char IDCard[20];
char Address[64];
void SetCryptorTool(CCryptorTool1 *pCT);
void ToBuffer(unsigned char *Buffer);
int FromBuffer(unsigned char *Buffer);
void ToFile(const char *FileName);
int FromFile(const char *FileName);
private:
CCryptorTool1 *pCryptTool;
int HexToInt(const char *s);
};
#endif /* __DEMODATA_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -