all repos — mgba @ c9e1f5d6a62fdea62acc56c55fec310a8b91dcb4

mGBA Game Boy Advance Emulator

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

 1/* Copyright (c) 2013-2019 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 "AbstractUpdater.h"
 9
10namespace QGBA {
11
12class BattleChipUpdater : public AbstractUpdater {
13public:
14	BattleChipUpdater(QObject* parent = nullptr);
15
16protected:
17	virtual QUrl manifestLocation() const override;
18	virtual QUrl parseManifest(const QByteArray&) const override;
19	virtual QString destination() const override;
20};
21
22}