|
a/src/ohplaylist.cxx |
|
b/src/ohplaylist.cxx |
|
... |
|
... |
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
15 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
16 |
*/
|
16 |
*/
|
17 |
|
17 |
|
18 |
#include "ohplaylist.hxx"
|
18 |
#include "ohplaylist.hxx"
|
19 |
|
19 |
|
20 |
#include <stdlib.h> // for atoi
|
20 |
#include <stdlib.h>
|
21 |
|
21 |
|
22 |
#include <upnp/upnp.h> // for UPNP_E_SUCCESS, etc
|
22 |
#include <upnp/upnp.h>
|
23 |
|
23 |
|
24 |
#include <functional> // for _Bind, bind, _1, _2
|
24 |
#include <functional>
|
25 |
#include <iostream> // for endl, etc
|
25 |
#include <iostream>
|
26 |
#include <string> // for string, allocator, etc
|
26 |
#include <string>
|
27 |
#include <utility> // for pair
|
27 |
#include <utility>
|
28 |
#include <vector> // for vector
|
28 |
#include <vector>
|
29 |
|
29 |
|
30 |
#include "libupnpp/base64.hxx" // for base64_encode
|
30 |
#include "libupnpp/base64.hxx"
|
31 |
#include "libupnpp/log.hxx" // for LOGDEB, LOGERR
|
31 |
#include "libupnpp/log.hxx"
|
32 |
#include "libupnpp/soaphelp.hxx" // for SoapIncoming, SoapOutgoing, i2s, etc
|
32 |
#include "libupnpp/soaphelp.hxx"
|
33 |
#include "libupnpp/upnpavutils.hxx"
|
33 |
#include "libupnpp/upnpavutils.hxx"
|
34 |
|
34 |
|
35 |
#include "ohmetacache.hxx" // for dmcacheSave
|
35 |
#include "ohmetacache.hxx"
|
36 |
#include "mpdcli.hxx" // for MpdStatus, UpSong, MPDCli, etc
|
36 |
#include "mpdcli.hxx"
|
37 |
#include "upmpd.hxx" // for UpMpd, etc
|
37 |
#include "upmpd.hxx"
|
38 |
#include "upmpdutils.hxx" // for didlmake, diffmaps, etc
|
38 |
#include "upmpdutils.hxx"
|
|
|
39 |
#include "smallut.h"
|
39 |
#include "ohproduct.hxx"
|
40 |
#include "ohproduct.hxx"
|
40 |
|
41 |
|
41 |
using namespace std;
|
42 |
using namespace std;
|
42 |
using namespace std::placeholders;
|
43 |
using namespace std::placeholders;
|
43 |
|
44 |
|