Switch to side-by-side view

--- a/src/cdplugins/tidal.hxx
+++ b/src/cdplugins/tidal.hxx
@@ -20,11 +20,13 @@
 #include <vector>
 
 #include "cdplugin.hxx"
+#include "libupnpp/device/vdir.hxx"
 
 // Tidal interface
 class Tidal : public CDPlugin {
 public:
-    Tidal(const std::vector<std::string>& plgpath);
+    Tidal(const std::vector<std::string>& plgpath,
+	  const std::string& httphp, const std::string& pathprefix);
     virtual ~Tidal();
 
     // Returns totalmatches
@@ -34,6 +36,8 @@
 	const std::vector<std::string>& sortcrits = std::vector<std::string>(),
 	BrowseFlag flg = BFChildren);
 
+    UPnPProvider::VirtualDir::FileOps getFileOps();
+    
 private:
     class Internal;
     Internal *m;