Sensor Objects

This includes all the sensor objects including a few
implementations, including dbus and sysfs sensors.

Change-Id: I9897c79f9fd463f00f0e02aeb6c32ffa89635dbe
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/notimpl/readonly.hpp b/notimpl/readonly.hpp
new file mode 100644
index 0000000..a609e22
--- /dev/null
+++ b/notimpl/readonly.hpp
@@ -0,0 +1,26 @@
+#pragma once
+
+/* Interface that implements an exception throwing read method. */
+
+#include "interfaces.hpp"
+
+
+class ReadOnly: public WriteInterface
+{
+    public:
+        ReadOnly()
+            : WriteInterface(0, 0)
+        { }
+
+        void write(double value) override;
+};
+
+class ReadOnlyNoExcept: public WriteInterface
+{
+    public:
+        ReadOnlyNoExcept()
+            : WriteInterface(0, 0)
+        { }
+
+        void write(double value) override;
+};