1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
//
// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <sstream>
namespace armnn
{
class PredicateResult
{
public:
explicit PredicateResult(bool result)
: m_Result(result)
{}
PredicateResult(const PredicateResult& predicateResult)
: m_Result(predicateResult.m_Result)
, m_Message(predicateResult.m_Message.str())
{}
void SetResult(bool newResult)
{
m_Result = newResult;
}
std::stringstream& Message()
{
return m_Message;
}
bool operator!() const
{
return !m_Result;
}
void operator=(PredicateResult otherPredicateResult)
{
otherPredicateResult.m_Result = m_Result;
}
bool m_Result;
std::stringstream m_Message;
};
} // namespace armnn
|