mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 23:30:02 +01:00
14 lines
232 B
C++
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);
|
|
};
|