data handler: add close method

Add the close method which, when called should turn off whatever bridge
was used.

Change-Id: Idbf16bd6777d0b9c3f537d0b9d3fdff22e7c319e
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/lpc_handler.cpp b/lpc_handler.cpp
index a723461..1c441d6 100644
--- a/lpc_handler.cpp
+++ b/lpc_handler.cpp
@@ -15,6 +15,12 @@
     return true;
 }
 
+bool LpcDataHandler::close()
+{
+    /* TODO: implement ioctl call to close window. */
+    return false;
+}
+
 std::vector<std::uint8_t> LpcDataHandler::copyFrom(std::uint32_t length)
 {
     /* TODO: implement this. */