|
a/upmpd/ohproduct.hxx |
|
b/upmpd/ohproduct.hxx |
|
... |
|
... |
23 |
|
23 |
|
24 |
class UpMpd;
|
24 |
class UpMpd;
|
25 |
|
25 |
|
26 |
class OHProduct : public UpnpService {
|
26 |
class OHProduct : public UpnpService {
|
27 |
public:
|
27 |
public:
|
28 |
OHProduct(UpMpd *dev);
|
28 |
OHProduct(UpMpd *dev, const string& friendlyname);
|
29 |
|
29 |
|
30 |
virtual bool getEventData(bool all, std::vector<std::string>& names,
|
30 |
virtual bool getEventData(bool all, std::vector<std::string>& names,
|
31 |
std::vector<std::string>& values);
|
31 |
std::vector<std::string>& values);
|
32 |
private:
|
32 |
private:
|
33 |
int manufacturer(const SoapArgs& sc, SoapData& data);
|
33 |
int manufacturer(const SoapArgs& sc, SoapData& data);
|
|
... |
|
... |
41 |
int setSourceIndex(const SoapArgs& sc, SoapData& data);
|
41 |
int setSourceIndex(const SoapArgs& sc, SoapData& data);
|
42 |
int setSourceIndexByName(const SoapArgs& sc, SoapData& data);
|
42 |
int setSourceIndexByName(const SoapArgs& sc, SoapData& data);
|
43 |
int source(const SoapArgs& sc, SoapData& data);
|
43 |
int source(const SoapArgs& sc, SoapData& data);
|
44 |
int attributes(const SoapArgs& sc, SoapData& data);
|
44 |
int attributes(const SoapArgs& sc, SoapData& data);
|
45 |
int sourceXMLChangeCount(const SoapArgs& sc, SoapData& data);
|
45 |
int sourceXMLChangeCount(const SoapArgs& sc, SoapData& data);
|
|
|
46 |
|
46 |
UpMpd *m_dev;
|
47 |
UpMpd *m_dev;
|
|
|
48 |
string m_roomOrName;
|
47 |
};
|
49 |
};
|
48 |
|
50 |
|
49 |
#endif /* _OHPRODUCT_H_X_INCLUDED_ */
|
51 |
#endif /* _OHPRODUCT_H_X_INCLUDED_ */
|