Searched refs:WarningObject (Results 1 – 6 of 6) sorted by relevance
49 decltype(Thresholds<WarningObject>::setLo) Thresholds<WarningObject>::setLo =50 &WarningObject::warningLow;51 decltype(Thresholds<WarningObject>::setHi) Thresholds<WarningObject>::setHi =52 &WarningObject::warningHigh;53 decltype(Thresholds<WarningObject>::getLo) Thresholds<WarningObject>::getLo =54 &WarningObject::warningLow;55 decltype(Thresholds<WarningObject>::getHi) Thresholds<WarningObject>::getHi =56 &WarningObject::warningHigh;57 decltype(Thresholds<WarningObject>::alarmLo)58 Thresholds<WarningObject>::alarmLo = &WarningObject::warningAlarmLow;[all …]
24 struct Thresholds<WarningObject>29 static SensorValueType (WarningObject::* const setLo)(SensorValueType);30 static SensorValueType (WarningObject::* const setHi)(SensorValueType);31 static SensorValueType (WarningObject::* const getLo)() const;32 static SensorValueType (WarningObject::* const getHi)() const;33 static bool (WarningObject::* const alarmLo)(bool);34 static bool (WarningObject::* const alarmHi)(bool);35 static bool (WarningObject::* const getAlarmLow)() const;36 static bool (WarningObject::* const getAlarmHigh)() const;37 static void (WarningObject::* const assertLowSignal)(SensorValueType);[all …]
20 using WarningObject = ServerObject<WarningInterface>; typedef
26 using WarningObject = ServerObject<threshold_ns::Warning>; typedef97 struct Threshold<WarningObject> : public WarningObject, public Hysteresis100 using WarningObject::WarningObject;125 WarningObject(bus, path), bus(bus), objPath(std::string(path)), in Threshold()131 return WarningObject::warningHigh(); in high()135 return WarningObject::warningLow(); in low()189 return WarningObject::warningHigh(value); in warningHigh()201 return WarningObject::warningLow(value); in warningLow()
173 std::unique_ptr<Threshold<WarningObject>> warningIface;
558 warningIface = std::make_unique<Threshold<WarningObject>>( in createThresholds()