9 Star 40 Fork 8

sinriv / meshlang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
funceditor.h 690 Bytes
一键复制 编辑 原始数据 按行查看 历史
cgoxopx 提交于 2019-11-09 16:00 . 可以编译
#ifndef FUNCEDITOR_H
#define FUNCEDITOR_H
#include <QDialog>
#include <unordered_map>
namespace Ui {
class funcEditor;
}
class funcEditor : public QDialog
{
Q_OBJECT
public:
explicit funcEditor(QWidget *parent = 0);
~funcEditor();
bool removeNode;
void setTable();
void setRows(int r);
void setRow(int r,const std::string & name,const std::string & val);
void getVar(std::unordered_map<std::string,std::string> & m);
void setModuleName(const std::string & val);
void getModuleName(std::string & val);
private slots:
void on_removeNode_clicked();
void on_saveNode_clicked();
private:
Ui::funcEditor *ui;
};
#endif // FUNCEDITOR_H
C++
1
https://gitee.com/sinriv/meshlang.git
git@gitee.com:sinriv/meshlang.git
sinriv
meshlang
meshlang
master

搜索帮助