Move sensor.hpp
The subproject must have failed.
Change-Id: Ie2de8c458dfecf09542532b2e58e34332ab72ce2
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/include/sensor.hpp b/include/sensor.hpp
new file mode 100644
index 0000000..2f746da
--- /dev/null
+++ b/include/sensor.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include <Thresholds.hpp>
+#include <sdbusplus/asio/object_server.hpp>
+
+struct Sensor
+{
+ virtual ~Sensor() = default;
+ std::vector<thresholds::Threshold> thresholds;
+ std::shared_ptr<sdbusplus::asio::dbus_interface> sensorInterface;
+ std::shared_ptr<sdbusplus::asio::dbus_interface> thresholdInterfaceWarning;
+ std::shared_ptr<sdbusplus::asio::dbus_interface> thresholdInterfaceCritical;
+ double value = std::numeric_limits<double>::quiet_NaN();
+};
\ No newline at end of file