9 Star 40 Fork 8

sinriv / meshlang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
functable.h 657 Bytes
一键复制 编辑 原始数据 按行查看 历史
cgoxopx 提交于 2019-11-03 22:02 . 流程图编写工具
#ifndef FUNCTABLE_H
#define FUNCTABLE_H
#include <QDialog>
#include <vector>
namespace Ui {
class funcTable;
}
class funcTable : public QDialog
{
Q_OBJECT
public:
explicit funcTable(QWidget *parent = 0);
~funcTable();
void setTable();
std::string functionName;
bool createFunction;
std::vector<std::string> input,output;
void setRows(int r);
void setRow(int r , const char * f,const char * i,const char * o,const char * s);
private slots:
void getSelected();
void getNewFunc();
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
Ui::funcTable *ui;
};
#endif // FUNCTABLE_H
C++
1
https://gitee.com/sinriv/meshlang.git
git@gitee.com:sinriv/meshlang.git
sinriv
meshlang
meshlang
master

搜索帮助