📄 copy.h
字号:
// copy.h: interface for the copy class.
//
//////////////////////////////////////////////////////////////////////
//#include "testDoc.h"加
#if !defined(AFX_COPY_H__B9F13115_2446_11D5_842D_0000B4B3AB12__INCLUDED_)
#define AFX_COPY_H__B9F13115_2446_11D5_842D_0000B4B3AB12__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class copy
{
public:
int x,y;
copy(int a,int b);
copy(const copy &);
virtual ~copy();
//friend void CTestDoc::disp(copy &);加
private:
//int age;加
};
#endif // !defined(AFX_COPY_H__B9F13115_2446_11D5_842D_0000B4B3AB12__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -