|
a/src/contentdirectory.hxx |
|
b/src/contentdirectory.hxx |
|
... |
|
... |
26 |
using namespace UPnPP;
|
26 |
using namespace UPnPP;
|
27 |
|
27 |
|
28 |
class ContentDirectory : public UPnPProvider::UpnpService {
|
28 |
class ContentDirectory : public UPnPProvider::UpnpService {
|
29 |
public:
|
29 |
public:
|
30 |
ContentDirectory(UPnPProvider::UpnpDevice *dev);
|
30 |
ContentDirectory(UPnPProvider::UpnpDevice *dev);
|
31 |
|
31 |
~ContentDirectory();
|
|
|
32 |
|
32 |
private:
|
33 |
private:
|
33 |
int actGetSearchCapabilities(const SoapIncoming& sc, SoapOutgoing& data);
|
34 |
int actGetSearchCapabilities(const SoapIncoming& sc, SoapOutgoing& data);
|
34 |
int actGetSortCapabilities(const SoapIncoming& sc, SoapOutgoing& data);
|
35 |
int actGetSortCapabilities(const SoapIncoming& sc, SoapOutgoing& data);
|
35 |
int actGetSystemUpdateID(const SoapIncoming& sc, SoapOutgoing& data);
|
36 |
int actGetSystemUpdateID(const SoapIncoming& sc, SoapOutgoing& data);
|
36 |
int actBrowse(const SoapIncoming& sc, SoapOutgoing& data);
|
37 |
int actBrowse(const SoapIncoming& sc, SoapOutgoing& data);
|
37 |
int actSearch(const SoapIncoming& sc, SoapOutgoing& data);
|
38 |
int actSearch(const SoapIncoming& sc, SoapOutgoing& data);
|
|
|
39 |
|
|
|
40 |
class Internal;
|
|
|
41 |
Internal *m;
|
38 |
};
|
42 |
};
|
39 |
#endif
|
43 |
#endif
|
40 |
|
44 |
|