struct CCL::IDiagnosticResult

#include <idiagnosticstore.h>

struct IDiagnosticResult: public CCL::IUnknown
{
    // methods

    virtual StringID CCL_API getContext () const = 0;
    virtual StringRef CCL_API getLabel () const = 0;
    virtual double CCL_API getMinimum () const = 0;
    virtual double CCL_API getMaximum () const = 0;
    virtual double CCL_API getAverage () const = 0;
    virtual double CCL_API getSum () const = 0;
    virtual int CCL_API getCount () const = 0;
    virtual tbool CCL_API hasValues () const = 0;
    virtual tbool CCL_API getValue (Variant& value, int index) const = 0;
    virtual int64 CCL_API getTimestamp (int index) const = 0;
};

Inherited Members

public:
    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;