This commit is contained in:
stoffu
2018-03-06 01:19:45 +09:00
parent c5363da1e8
commit c8f0cf3543
22 changed files with 161 additions and 112 deletions

17
src/NetworkType.h Normal file
View File

@@ -0,0 +1,17 @@
#pragma once
#include <QObject>
#include <wallet/api/wallet2_api.h>
class NetworkType : public QObject
{
Q_OBJECT
public:
enum Type : uint8_t {
MAINNET = Monero::MAINNET,
TESTNET = Monero::TESTNET,
STAGENET = Monero::STAGENET
};
Q_ENUM(Type)
};