class QPanda::QResult

QResult abstract class, this class contains the result of the quantum measurement.

#include <QResultFactory.h>

class QResult
{
public:
    // methods

    virtual std::map<std::string, bool> getResultMap() const = 0;
    virtual void append(std::pair<std::string, bool>) = 0;
};

// direct descendants

class OriginQResult;