2 #include "ErrorHandler/MessageAnalyzer/ma_cond_test_expr.h"
4 using namespace novadaq::errorhandler;
6 bool ma_cond_test_expr::evaluate(
ma_condition const * cond )
const
8 if( andexprs.empty() )
return true;
10 test_andexprs_t::const_iterator it = andexprs.begin();
12 for( ; it!=andexprs.end(); ++it )
13 if( it->evaluate( cond ) == true )
return true;