Switch to unified view

a/src/conman.hxx b/src/conman.hxx
...
...
19
19
20
#include <string>                       // for string
20
#include <string>                       // for string
21
#include <vector>                       // for vector
21
#include <vector>                       // for vector
22
22
23
#include "libupnpp/device/device.hxx"   // for UpnpService
23
#include "libupnpp/device/device.hxx"   // for UpnpService
24
#include "libupnpp/soaphelp.hxx"        // for SoapArgs, SoapData
24
#include "libupnpp/soaphelp.hxx"        // for SoapIncoming, SoapOutgoing
25
25
26
class UpMpd;
26
class UpMpd;
27
27
28
using namespace UPnPP;
28
using namespace UPnPP;
29
29
...
...
32
    UpMpdConMan(UpMpd *dev);
32
    UpMpdConMan(UpMpd *dev);
33
33
34
    virtual bool getEventData(bool all, std::vector<std::string>& names, 
34
    virtual bool getEventData(bool all, std::vector<std::string>& names, 
35
                              std::vector<std::string>& values);
35
                              std::vector<std::string>& values);
36
private:
36
private:
37
    int getCurrentConnectionIDs(const SoapArgs& sc, SoapData& data);
37
    int getCurrentConnectionIDs(const SoapIncoming& sc, SoapOutgoing& data);
38
    int getCurrentConnectionInfo(const SoapArgs& sc, SoapData& data);
38
    int getCurrentConnectionInfo(const SoapIncoming& sc, SoapOutgoing& data);
39
    int getProtocolInfo(const SoapArgs& sc, SoapData& data);
39
    int getProtocolInfo(const SoapIncoming& sc, SoapOutgoing& data);
40
40
41
};
41
};
42
42
43
#endif /* _CONMAN_H_X_INCLUDED_ */
43
#endif /* _CONMAN_H_X_INCLUDED_ */