Switch to unified view

a/upmpd/conman.hxx b/upmpd/conman.hxx
...
...
24
class UpMpd;
24
class UpMpd;
25
25
26
class UpMpdConMan : public UpnpService {
26
class UpMpdConMan : public UpnpService {
27
public:
27
public:
28
    UpMpdConMan(UpMpd *dev);
28
    UpMpdConMan(UpMpd *dev);
29
29
    virtual bool getEventData(bool all, std::vector<std::string>& names, 
30
    virtual bool getEventData(bool all, std::vector<std::string>& names, 
30
                              std::vector<std::string>& values);
31
                              std::vector<std::string>& values);
31
    virtual const std::string& getServiceType();
32
33
private:
32
private:
34
    int getCurrentConnectionIDs(const SoapArgs& sc, SoapData& data);
33
    int getCurrentConnectionIDs(const SoapArgs& sc, SoapData& data);
35
    int getCurrentConnectionInfo(const SoapArgs& sc, SoapData& data);
34
    int getCurrentConnectionInfo(const SoapArgs& sc, SoapData& data);
36
    int getProtocolInfo(const SoapArgs& sc, SoapData& data);
35
    int getProtocolInfo(const SoapArgs& sc, SoapData& data);
37
36