tools: start implementing data interface

The host must provide multiple data interfaces.  Each data interface is
responsible for configuring its data pathway and sending the contents
via this pathway, as well as any flow control.

Change-Id: If856519536d01043e69c45044fcd0ad525592486
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/tools/bt.hpp b/tools/bt.hpp
new file mode 100644
index 0000000..dbd5c8c
--- /dev/null
+++ b/tools/bt.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "interface.hpp"
+
+class BtDataHandler : public DataInterface
+{
+  public:
+    BtDataHandler() = default;
+
+    bool sendContents(const std::string& input, std::uint16_t session) override;
+};