1
0
Fork 0
x64dbg/x64_dbg_gui/Project/Src/Gui/AttachDialog.h

31 lines
508 B
C++

#ifndef ATTACHDIALOG_H
#define ATTACHDIALOG_H
#include <QDialog>
namespace Ui
{
class AttachDialog;
}
class AttachDialog : public QDialog
{
Q_OBJECT
public:
explicit AttachDialog(QWidget* parent = 0);
~AttachDialog();
private slots:
void on_btnAttach_clicked();
void refresh();
void processListContextMenu(const QPoint & pos);
private:
Ui::AttachDialog* ui;
QAction* mAttachAction;
QAction* mRefreshAction;
};
#endif // ATTACHDIALOG_H