📄 secondmsg.h
字号:
#pragma once
#include "msgheader.h"
class SecondMsg :public MsgHeader
{
public:
SecondMsg(char* src,char* dest);
SecondMsg(char* src,char* dest,char* first,long second,long third);
SecondMsg(const SecondMsg &sm);
SecondMsg& operator=(const SecondMsg &sm);
~SecondMsg(void);
private:
char *m_nFirstData;
long m_nSecondData;
long m_nThirdData;
public:
void SetMsgData(char * first,long second,long third);
char* toString(char** p);
bool savetofile(const char *path);
static MsgHeader* loadfromfile(const char *path);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -