mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
221 B
C++
14 lines
221 B
C++
#pragma once
|
|
|
|
#include "breakpoint_list.h"
|
|
|
|
#include <QDialog>
|
|
|
|
class debugger_add_bp_window : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit debugger_add_bp_window(breakpoint_list* bp_list, QWidget* parent = nullptr);
|
|
};
|