?? element.h
字號:
// Element.h: interface for the Element class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ELEMENT_H__FCD2A367_F578_49D3_863B_D0F1082AE55B__INCLUDED_)
#define AFX_ELEMENT_H__FCD2A367_F578_49D3_863B_D0F1082AE55B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class Element
{
public:
void SetZ(int z);
void SetY(int y);
void SetX(int x);
int GetZ()const;
int GetY()const;
int GetX()const;
Element(int x= 0,int y = 0,int z = 0);
virtual ~Element();
private:
int X;
int Y;
int Z;
};
#endif // !defined(AFX_ELEMENT_H__FCD2A367_F578_49D3_863B_D0F1082AE55B__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -