mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
15 lines
221 B
C
15 lines
221 B
C
|
|
#ifndef DEBUGGERFRAME_H
|
||
|
|
#define DEBUGGERFRAME_H
|
||
|
|
|
||
|
|
#include <QDockWidget>
|
||
|
|
|
||
|
|
class DebuggerFrame : public QDockWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit DebuggerFrame(QWidget *parent = 0);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // DEBUGGERFRAME_H
|