51ed9ec971
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef PAYMENTREQUESTPLUS_H
|
|
#define PAYMENTREQUESTPLUS_H
|
|
|
|
#include "paymentrequest.pb.h"
|
|
|
|
#include "base58.h"
|
|
|
|
#include <QByteArray>
|
|
#include <QList>
|
|
#include <QString>
|
|
|
|
//
|
|
// Wraps dumb protocol buffer paymentRequest
|
|
// with extra methods
|
|
//
|
|
|
|
class PaymentRequestPlus
|
|
{
|
|
public:
|
|
PaymentRequestPlus() { }
|
|
|
|
bool parse(const QByteArray& data);
|
|
bool SerializeToString(string* output) const;
|
|
|
|
bool IsInitialized() const;
|
|
QString getPKIType() const;
|
|
// Returns true if merchant's identity is authenticated, and
|
|
// returns human-readable merchant identity in merchant
|
|
bool getMerchant(X509_STORE* certStore, QString& merchant) const;
|
|
|
|
// Returns list of outputs, amount
|
|
QList<std::pair<CScript,qint64> > getPayTo() const;
|
|
|
|
const payments::PaymentDetails& getDetails() const { return details; }
|
|
|
|
private:
|
|
payments::PaymentRequest paymentRequest;
|
|
payments::PaymentDetails details;
|
|
};
|
|
|
|
#endif // PAYMENTREQUESTPLUS_H
|
|
|