// Copyright 2017 Dolphin Emulator Project // Licensed under GPLv2+ // Refer to the license.txt file included. #pragma once #include namespace Config { template struct ConfigInfo; } class GraphicsChoice : public QComboBox { public: GraphicsChoice(const QStringList& options, const Config::ConfigInfo& setting); private: void Update(int choice); const Config::ConfigInfo& m_setting; };