operator==

Description

Checks whether parameters are the same.

Definition

#ifndef ATB_COMMONOPPARAM_H
namespace atb {
namespace common {
inline bool operator==(const EventParam &left, const EventParam &right)
{
    return left.operatorType == right.operatorType && left.event == right.event;
}
} // namespace common
} // namespace atb
#endif