capybara-webkit/src/InvocationResult.h

14 lines
229 B
C
Raw Normal View History

2013-01-20 23:57:04 +00:00
#include <QVariant>
class InvocationResult {
public:
InvocationResult(QVariant result, bool error = false);
const QVariant &result() const;
bool hasError();
private:
QVariant m_result;
bool m_error;
};