all repos — mgba @ 3d4faa41e281ff042451032190b3191af2737d5a

mGBA Game Boy Advance Emulator

src/platform/qt/Override.h (view raw)

 1/* Copyright (c) 2013-2016 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#pragma once
 7
 8struct Configuration;
 9struct mCore;
10
11namespace QGBA {
12
13class Override {
14public:
15	virtual ~Override() {}
16
17	virtual void apply(struct mCore*) = 0;
18	virtual void identify(const struct mCore*) = 0;
19	virtual void save(struct Configuration*) const = 0;
20};
21
22}