string: ensure string included

Latest upstream yocto appears to have removed a free include of string.
This is causing compile failures for files which do not include it
properly.

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: I76b1d73d045f98bd457c155086e000a430134918
diff --git a/sessions_manager.hpp b/sessions_manager.hpp
index f9c00b5..ed3db49 100644
--- a/sessions_manager.hpp
+++ b/sessions_manager.hpp
@@ -7,6 +7,7 @@
 #include <map>
 #include <memory>
 #include <mutex>
+#include <string>
 
 namespace session
 {