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/blob_errors.hpp b/tools/blob_errors.hpp
index b737b7b..45f0e46 100644
--- a/tools/blob_errors.hpp
+++ b/tools/blob_errors.hpp
@@ -3,6 +3,9 @@
 #include <exception>
 #include <string>
 
+namespace host_tool
+{
+
 class BlobException : public std::exception
 {
   public:
@@ -16,3 +19,5 @@
   private:
     std::string message;
 };
+
+} // namespace host_tool