mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 12:09:50 +00:00
41 lines
837 B
C++
41 lines
837 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2022 The Monero Project
|
|
|
|
#ifndef FEATHER_APPDATA_H
|
|
#define FEATHER_APPDATA_H
|
|
|
|
#include <QObject>
|
|
#include <QPointer>
|
|
#include <QCoreApplication>
|
|
|
|
#include "prices.h"
|
|
#include "TxFiatHistory.h"
|
|
#include "RestoreHeightLookup.h"
|
|
|
|
class AppData : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AppData(QObject *parent);
|
|
static AppData* instance();
|
|
|
|
Prices prices;
|
|
TxFiatHistory *txFiatHistory;
|
|
QMap<NetworkType::Type, int> heights;
|
|
QMap<NetworkType::Type, RestoreHeightLookup*> restoreHeights;
|
|
|
|
private slots:
|
|
void onBlockHeightsReceived(int mainnet, int stagenet);
|
|
|
|
private:
|
|
void initRestoreHeights();
|
|
|
|
static QPointer<AppData> m_instance;
|
|
};
|
|
|
|
inline AppData* appData()
|
|
{
|
|
return AppData::instance();
|
|
}
|
|
|
|
#endif //FEATHER_APPDATA_H
|