src/platform/qt/GBOverride.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/gb/overrides.h>
11
12namespace QGBA {
13
14class GBOverride : 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 GBCartridgeOverride override;
21};
22
23}