mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
15 lines
269 B
C++
15 lines
269 B
C++
|
#include "InvocationResult.h"
|
||
|
|
||
|
InvocationResult::InvocationResult(QVariant result, bool error) {
|
||
|
m_result = result;
|
||
|
m_error = error;
|
||
|
}
|
||
|
|
||
|
const QVariant &InvocationResult::result() const {
|
||
|
return m_result;
|
||
|
}
|
||
|
|
||
|
bool InvocationResult::hasError() {
|
||
|
return m_error;
|
||
|
}
|