#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 440 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::Select< Type, TCond, TTrueValue, TFalseValue >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 442 行で定義されています。
00443 { 00444 if ( TCond()(opState) ) { 00445 return TTrueValue()(opState); 00446 } 00447 else { 00448 return TFalseValue()(opState); 00449 } 00450 }