use ZoneInterface pointers where Dbus aspect not important

The implementation of the ZoneInterface used is the DbusPidZone, however
using the ZoneInterface when the Dbus aspect is unimportant provides for
trivial support of other implementations.

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I0ed87322904e7f87e5b5c8a50c01144f3d843a10
diff --git a/main.cpp b/main.cpp
index 55a6d2e..73e43c8 100644
--- a/main.cpp
+++ b/main.cpp
@@ -81,7 +81,7 @@
 void restartControlLoops()
 {
     static SensorManager mgmr;
-    static std::unordered_map<int64_t, std::unique_ptr<DbusPidZone>> zones;
+    static std::unordered_map<int64_t, std::unique_ptr<ZoneInterface>> zones;
     static std::list<boost::asio::steady_timer> timers;
 
     timers.clear();