rpcsx/rpcs3qt-legacy/config_checker.h
2025-04-06 23:55:46 +03:00

14 lines
232 B
C++

#pragma once
#include <QDialog>
class config_checker : public QDialog
{
Q_OBJECT
public:
config_checker(QWidget* parent, const QString& path, bool is_log);
bool check_config(QString content, QString& result, bool is_log);
};