mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 01:30:13 +01:00
26 lines
361 B
C
26 lines
361 B
C
#pragma once
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
|
|
struct gui_save
|
|
{
|
|
QString key;
|
|
QString name;
|
|
QVariant def;
|
|
|
|
gui_save()
|
|
{
|
|
}
|
|
|
|
gui_save(const QString& k, const QString& n, const QVariant& d)
|
|
: key(k), name(n), def(d)
|
|
{
|
|
}
|
|
|
|
bool operator==(const gui_save& rhs) const noexcept
|
|
{
|
|
return key == rhs.key && name == rhs.name && def == rhs.def;
|
|
}
|
|
};
|