tools: put all host-side code into host_tool namespace

To avoid confusion and organize the code itself more cleanly, place the
host-side code into its own namespace.

Change-Id: I573eb0494eb59874adb1d1eadc502499e928e396
Signed-off-by: Patrick Venture <venture@google.com>
diff --git a/tools/bt.cpp b/tools/bt.cpp
index de26b27..da582d4 100644
--- a/tools/bt.cpp
+++ b/tools/bt.cpp
@@ -1,7 +1,12 @@
 #include "bt.hpp"
 
+namespace host_tool
+{
+
 bool BtDataHandler::sendContents(const std::string& input,
                                  std::uint16_t session)
 {
     return false;
 }
+
+} // namespace host_tool