#include <zMonitor.h>
Public Member Functions | |
zMonitorRuleOver (REAL _limit) | |
virtual | ~zMonitorRuleOver () |
bool | isValid (float monitorValue) |
Private Attributes | |
REAL | limit |
Definition at line 127 of file zMonitor.h.
zMonitorRuleOver::zMonitorRuleOver | ( | REAL | _limit | ) | [inline] |
virtual zMonitorRuleOver::~zMonitorRuleOver | ( | ) | [inline, virtual] |
bool zMonitorRuleOver::isValid | ( | float | monitorValue | ) | [virtual] |
Reimplemented from zMonitorRule.
Definition at line 146 of file zMonitor.cpp.
References limit.
00146 { 00147 return (monitorValue>=limit); 00148 }
REAL zMonitorRuleOver::limit [private] |