mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-05 04:39:47 -08:00
Coin Information API integrated
This commit is contained in:
20
src/qt/CSCPublicAPI/jsoncoininfoparser.h
Normal file
20
src/qt/CSCPublicAPI/jsoncoininfoparser.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef JSONCOININFOPARSER_H
|
||||
#define JSONCOININFOPARSER_H
|
||||
|
||||
#include <QJsonObject>
|
||||
#include <QJsonValue>
|
||||
|
||||
class JsonCoinInfoParser : public QJsonObject
|
||||
{
|
||||
public:
|
||||
JsonCoinInfoParser();
|
||||
JsonCoinInfoParser( const QJsonObject& a_rOther );
|
||||
virtual ~JsonCoinInfoParser(){}
|
||||
|
||||
const QJsonObject& getCoinInfo() const;
|
||||
|
||||
private:
|
||||
QJsonObject coinInfoObject;
|
||||
};
|
||||
|
||||
#endif // JSONCOININFOPARSER_H
|
||||
Reference in New Issue
Block a user