[plugins-common] - use std namespace, include headers
authorKevron Rees <kevron.m.rees@intel.com>
Mon, 26 Jan 2015 21:07:55 +0000 (13:07 -0800)
committerKevron Rees <kevron.m.rees@intel.com>
Mon, 26 Jan 2015 21:07:55 +0000 (13:07 -0800)
plugins/common/dbusplugin.cpp

index 641a5ce..ea71e91 100644 (file)
        Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
 
+#include "dbusplugin.h"
+
 #include <boost/lexical_cast.hpp>
+#include <map>
+#include <string>
 
-#include "dbusplugin.h"
 #include "abstractroutingengine.h"
 #include "debugout.h"
 #include "listplusplus.h"
 
-DBusSink::DBusSink(string propertyName, AbstractRoutingEngine* engine, GDBusConnection* connection, map<string, string> config)
+DBusSink::DBusSink(std::string propertyName, AbstractRoutingEngine* engine, GDBusConnection* connection, std::map<std::string, std::string> config)
        :AbstractDBusInterface("org.automotive."+propertyName, propertyName, connection),
          AbstractSink(engine, config)
 {