mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
18 lines
232 B
C++
18 lines
232 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QLineEdit>
|
|
|
|
class memory_string_searcher : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
QLineEdit* m_addr_line;
|
|
|
|
public:
|
|
memory_string_searcher(QWidget* parent);
|
|
|
|
private Q_SLOTS:
|
|
void OnSearch();
|
|
};
|