mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-31 22:00:10 +01:00
26 lines
402 B
C++
26 lines
402 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* le_addr;
|
|
QHBoxLayout* hbox_panel;
|
|
QPushButton* button_search;
|
|
|
|
public:
|
|
memory_string_searcher(QWidget* parent);
|
|
|
|
private Q_SLOTS:
|
|
void OnSearch();
|
|
};
|