eden/src/qt_common/backendsettings.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
312 B
C++
Raw Normal View History

#pragma once
#include "common/settings.h"
namespace BackEndSettings {
using namespace Settings;
struct Values {
SwitchableSetting<bool> backend_force_x11;
Setting<bool> backend_hide_warning_popup;
Values();
};
extern Values values;
void Save();
void Restore();
} // namespace BackEndSettings