mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 09:09:12 +01:00
7ff8e3367f
Fixes warning on freebsd-x64
16 lines
281 B
C++
16 lines
281 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
class GraphicsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
protected:
|
|
virtual void LoadSettings() = 0;
|
|
virtual void SaveSettings() = 0;
|
|
};
|