mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-02 20:09:47 -08:00
21 lines
400 B
C++
21 lines
400 B
C++
#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
|