📄 aiwffs.h
字号:
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
const int MaxNum = 50;
const int NeedVersa = 1;
const int NeedNotVersa = 0;
class AiMt;
class AiWffs:public CObject
{
DECLARE_SERIAL(AiWffs)
public:
AiWffs();
AiWffs(AiWffs& wff);
AiWffs(AiMt& mt);
//操作符重载
AiWffs operator = (AiWffs& wff);
AiWffs operator = (AiMt& mt);
//数据成员
private:
int m_id;
int m_sign;
AiMt* m_pre;
//函数成员
public:
void SetId(int id);
//void SetPre(AiMt* pwff);
void SetPre(AiMt* mt);
void SetSign(int sign);
int GetId();
AiMt* GetPre();
int GetSign();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -