point.h

来自「dll的一些学习资料」· C头文件 代码 · 共 22 行

H
22
字号
// point.h: interface for the point class.
//
//////////////////////////////////////////////////////////////////////

#ifndef POINT_H
#define POINT_H

#ifdef DLL_FILE
class _declspec(dllexport) point  //导出类point
#else
class _declspec(dllimport) point  //导入类point
#endif
{
public:
	float y;
	float x;
	point();
	point(float x_coordinate,float y_coordinate );
};

#endif 

⌨️ 快捷键说明

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