Switch to side-by-side view

--- a/libupnpp/control/ohplaylist.hxx
+++ b/libupnpp/control/ohplaylist.hxx
@@ -19,7 +19,7 @@
 
 #include "libupnpp/config.h"
 
-#include UNORDERED_MAP_INCLUDE
+#include <unordered_map>
 #include <string>                       // for string
 #include <vector>                       // for vector
 
@@ -33,7 +33,7 @@
 class UPnPDeviceDesc;
 class UPnPServiceDesc;
 
-typedef STD_SHARED_PTR<OHPlaylist> OHPLH;
+typedef std::shared_ptr<OHPlaylist> OHPLH;
 
 /**
  * OHPlaylist Service client class.
@@ -103,7 +103,7 @@
     static const std::string SType;
 
 private:
-    void evtCallback(const STD_UNORDERED_MAP<std::string, std::string>&);
+    void evtCallback(const std::unordered_map<std::string, std::string>&);
     void registerCallback();
 };