all repos — mgba @ 1dc405db3829a6f5eaed21a034e5d0b7ed0c7f5a

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}