Switch to unified view

a/src/avtransport.hxx b/src/avtransport.hxx
...
...
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
#ifndef _AVTRANSPORT_H_X_INCLUDED_
17
#ifndef _AVTRANSPORT_H_X_INCLUDED_
18
#define _AVTRANSPORT_H_X_INCLUDED_
18
#define _AVTRANSPORT_H_X_INCLUDED_
19
19
20
#include <set>                          // for set
20
#include <set>
21
#include <string>                       // for string
21
#include <string>
22
#include <unordered_map>                // for unordered_map
22
#include <unordered_map>
23
#include <vector>                       // for vector
23
#include <vector>
24
24
25
#include "libupnpp/device/device.hxx"   // for UpnpService
25
#include "libupnpp/device/device.hxx"
26
#include "libupnpp/soaphelp.hxx"        // for SoapIncoming, SoapOutgoing
26
#include "libupnpp/soaphelp.hxx"
27
27
28
class OHPlaylist;
28
class OHPlaylist;
29
class UpMpd;
29
class UpMpd;
30
30
31
using namespace UPnPP;
31
using namespace UPnPP;
...
...
42
    void setOHP(OHPlaylist *ohp) {
42
    void setOHP(OHPlaylist *ohp) {
43
        m_ohp = ohp;
43
        m_ohp = ohp;
44
    }
44
    }
45
45
46
private:
46
private:
47
    int setAVTransportURI(const SoapIncoming& sc, SoapOutgoing& data, bool setnext);
47
    int setAVTransportURI(const SoapIncoming& sc, SoapOutgoing& data,
48
                          bool setnext);
48
    int getPositionInfo(const SoapIncoming& sc, SoapOutgoing& data);
49
    int getPositionInfo(const SoapIncoming& sc, SoapOutgoing& data);
49
    int getTransportInfo(const SoapIncoming& sc, SoapOutgoing& data);
50
    int getTransportInfo(const SoapIncoming& sc, SoapOutgoing& data);
50
    int getMediaInfo(const SoapIncoming& sc, SoapOutgoing& data);
51
    int getMediaInfo(const SoapIncoming& sc, SoapOutgoing& data);
51
    int getDeviceCapabilities(const SoapIncoming& sc, SoapOutgoing& data);
52
    int getDeviceCapabilities(const SoapIncoming& sc, SoapOutgoing& data);
52
    int setPlayMode(const SoapIncoming& sc, SoapOutgoing& data);
53
    int setPlayMode(const SoapIncoming& sc, SoapOutgoing& data);