⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 graphpoint.h

📁 一个简单的画图程序 可以画点线面等
💻 H
字号:
// GraphPoint.h: interface for the CGraphPoint class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GRAPHPOINT_H__10CB95BB_AAA5_4215_A718_CFEB4810BDD0__INCLUDED_)
#define AFX_GRAPHPOINT_H__10CB95BB_AAA5_4215_A718_CFEB4810BDD0__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "Graph.h"

class CGraphPoint : public CGraph  
{
public:
	void Draw(CDC *pDC);
	CPoint GetLocation();
	void SetLocation(CPoint point);
	void SetLocation(int x,int y);
	CGraphPoint();
	virtual ~CGraphPoint();
	void Serialize(CArchive& ar);
protected:
	int x;
	int y;
};

#endif // !defined(AFX_GRAPHPOINT_H__10CB95BB_AAA5_4215_A718_CFEB4810BDD0__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -