加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
modulegen.h 449 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef MODULEGEN_H
#define MODULEGEN_H
#include <QDialog>
namespace Ui {
class moduleGen;
}
class moduleGen : public QDialog
{
Q_OBJECT
public:
explicit moduleGen(QWidget *parent = 0);
~moduleGen();
std::string moduleName;
bool create;
std::vector<std::string> input,output;
private slots:
void on_buttonBox_accepted();
void on_buttonBox_rejected();
private:
Ui::moduleGen *ui;
};
#endif // MODULEGEN_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化