mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
24 lines
526 B
C++
24 lines
526 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QtWidgets/QDialog>
|
||
|
|
#include <QtCore/QString>
|
||
|
|
|
||
|
|
#include "ui_SeerArgumentsDialog.h"
|
||
|
|
|
||
|
|
class SeerArgumentsDialog : public QDialog, protected Ui::SeerArgumentsDialogForm {
|
||
|
|
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit SeerArgumentsDialog (QWidget* parent = 0);
|
||
|
|
~SeerArgumentsDialog ();
|
||
|
|
|
||
|
|
void setExecutableArguments (const QString& executableArguments);
|
||
|
|
QString executableArguments ();
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
|
||
|
|
private:
|
||
|
|
};
|
||
|
|
|