fru-device: explicitly include headers
We were depending on our dependencies to include asio.hpp. Our
dependency (sdbusplus) reworked things such that it doesn't include
asio.hpp and now we are broken.
Change-Id: I3feb1b30cd91534e3a4ebb605f7a25af7322aa3f
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/src/FruDevice.cpp b/src/FruDevice.cpp
index 76da2d3..f82f6d4 100644
--- a/src/FruDevice.cpp
+++ b/src/FruDevice.cpp
@@ -22,6 +22,8 @@
#include <sys/ioctl.h>
#include <boost/algorithm/string/predicate.hpp>
+#include <boost/asio/deadline_timer.hpp>
+#include <boost/asio/io_service.hpp>
#include <boost/container/flat_map.hpp>
#include <nlohmann/json.hpp>
#include <sdbusplus/asio/connection.hpp>