summaryrefslogtreecommitdiffstats
path: root/fan_enclosure.hpp
diff options
context:
space:
mode:
authorMatthew Barth <msbarth@us.ibm.com>2017-02-17 15:39:36 -0600
committerMatthew Barth <msbarth@us.ibm.com>2017-03-09 15:13:33 -0600
commit293477d4650314935a3741c547efcb36d5efb340 (patch)
treea21cf9ae720be38a7d16f1a4cd33d9487dd130d9 /fan_enclosure.hpp
parentae0e96c3f98e57e5988b1621ec4c67d4b27cda4f (diff)
downloadphosphor-fan-presence-293477d4650314935a3741c547efcb36d5efb340.tar.gz
phosphor-fan-presence-293477d4650314935a3741c547efcb36d5efb340.zip
Add fan presence application framework
Add class framework for detecting fans by tach Change-Id: I45295fd6bcd81c62cef36320dfbc4f0da6092557 Signed-off-by: Matthew Barth <msbarth@us.ibm.com>
Diffstat (limited to 'fan_enclosure.hpp')
-rw-r--r--fan_enclosure.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/fan_enclosure.hpp b/fan_enclosure.hpp
new file mode 100644
index 0000000..a94ffe7
--- /dev/null
+++ b/fan_enclosure.hpp
@@ -0,0 +1,27 @@
+#pragma once
+
+
+namespace phosphor
+{
+namespace fan
+{
+namespace presence
+{
+
+class FanEnclosure
+{
+ public:
+ FanEnclosure() = delete;
+ FanEnclosure(const FanEnclosure&) = delete;
+ FanEnclosure(FanEnclosure&&) = default;
+ FanEnclosure& operator=(const FanEnclosure&) = delete;
+ FanEnclosure& operator=(FanEnclosure&&) = default;
+ ~FanEnclosure() = default;
+
+ private:
+
+};
+
+} // namespace presence
+} // namespace fan
+} // namespace phosphor
OpenPOWER on IntegriCloud