#include <GenericOperation.h>
Public メソッド | |
bool | operator() (OpEmulationState *opState) |
GenericOperation.h の 357 行で定義されています。
bool Onikiri::EmulatorUtility::Operation::CondAnd< TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 359 行で定義されています。
00360 { 00361 bool lhs = TSrc1()(opState) != 0; 00362 bool rhs = TSrc2()(opState) != 0; 00363 00364 return lhs && rhs; 00365 }