mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-02 22:59:59 +01:00
24 lines
351 B
C++
24 lines
351 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
#include "Emu/Memory/Memory.h"
|
|
#include "Emu/System.h"
|
|
|
|
#include <QDialog>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
#include <QHBoxLayout>
|
|
|
|
class memory_string_searcher : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
QLineEdit* m_addr_line;
|
|
|
|
public:
|
|
memory_string_searcher(QWidget* parent);
|
|
|
|
private Q_SLOTS:
|
|
void OnSearch();
|
|
};
|