6 Star 23 Fork 9

ZzqiZQute / ELMDemoQt

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
surfacenode.cpp 345 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZzqiZQute 提交于 2018-11-28 22:04 . first commit
#include "surfacenode.h"
SurfaceNode::SurfaceNode(int type, QPointF pos)
{
mType=type;
mPos=pos;
}
int SurfaceNode::type() const
{
return mType;
}
void SurfaceNode::setType(int type)
{
mType = type;
}
QPointF SurfaceNode::pos() const
{
return mPos;
}
void SurfaceNode::setPos(const QPointF &pos)
{
mPos = pos;
}
C++
1
https://gitee.com/ZzqiZQute/ELMDemoQt.git
git@gitee.com:ZzqiZQute/ELMDemoQt.git
ZzqiZQute
ELMDemoQt
ELMDemoQt
master

搜索帮助