all repos — mgba @ 3227d74e4d434d497673e5a77589b674e811c969

mGBA Game Boy Advance Emulator

src/platform/qt/GBAOverride.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
 8#include "Override.h"
 9
10#include <mgba/internal/gba/overrides.h>
11
12namespace QGBA {
13
14class GBAOverride : public Override {
15public:
16	void apply(struct mCore*) override;
17	void identify(const struct mCore*) override;
18	void save(struct Configuration*) const override;
19
20	struct GBACartridgeOverride override;
21};
22
23}