forked from qt-creator/qt-creator
lldb: introduce dialog to start engine remotely
This commit is contained in:
@@ -45,6 +45,7 @@ class AttachExternalDialog;
|
||||
class AttachTcfDialog;
|
||||
class StartExternalDialog;
|
||||
class StartRemoteDialog;
|
||||
class StartRemoteEngineDialog;
|
||||
} // namespace Ui
|
||||
|
||||
QT_END_NAMESPACE
|
||||
@@ -242,6 +243,23 @@ private:
|
||||
QDialogButtonBox *m_box;
|
||||
};
|
||||
|
||||
class StartRemoteEngineDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit StartRemoteEngineDialog(QWidget *parent);
|
||||
~StartRemoteEngineDialog();
|
||||
QString username() const;
|
||||
QString host() const;
|
||||
QString password() const;
|
||||
QString enginePath() const;
|
||||
QString inferiorPath() const;
|
||||
|
||||
private:
|
||||
Ui::StartRemoteEngineDialog *m_ui;
|
||||
};
|
||||
|
||||
} // namespace Debugger
|
||||
} // namespace Internal
|
||||
|
||||
|
||||
Reference in New Issue
Block a user