#include <GenericOperation.h>
Public メソッド | |
bool | operator() (OpEmulationState *opState) |
GenericOperation.h の 369 行で定義されています。
bool Onikiri::EmulatorUtility::Operation::CondOr< TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 371 行で定義されています。
00372 { 00373 bool lhs = TSrc1()(opState) != 0; 00374 bool rhs = TSrc2()(opState) != 0; 00375 00376 return lhs || rhs; 00377 }