?? 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 + -