|
a/upmpd/conman.hxx |
|
b/upmpd/conman.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 _CONMAN_H_X_INCLUDED_
|
17 |
#ifndef _CONMAN_H_X_INCLUDED_
|
18 |
#define _CONMAN_H_X_INCLUDED_
|
18 |
#define _CONMAN_H_X_INCLUDED_
|
19 |
|
19 |
|
20 |
#include <string>
|
20 |
#include <string> // for string
|
|
|
21 |
#include <vector> // for vector
|
21 |
|
22 |
|
22 |
#include "libupnpp/device/device.hxx"
|
23 |
#include "libupnpp/device/device.hxx" // for UpnpService
|
|
|
24 |
#include "libupnpp/soaphelp.hxx" // for SoapArgs, SoapData
|
|
|
25 |
|
|
|
26 |
class UpMpd;
|
23 |
|
27 |
|
24 |
using namespace UPnPP;
|
28 |
using namespace UPnPP;
|
25 |
|
29 |
|
26 |
class UpMpd;
|
|
|
27 |
|
|
|
28 |
class UpMpdConMan : public UpnpService {
|
30 |
class UpMpdConMan : public UPnPProvider::UpnpService {
|
29 |
public:
|
31 |
public:
|
30 |
UpMpdConMan(UpMpd *dev);
|
32 |
UpMpdConMan(UpMpd *dev);
|
31 |
|
33 |
|
32 |
virtual bool getEventData(bool all, std::vector<std::string>& names,
|
34 |
virtual bool getEventData(bool all, std::vector<std::string>& names,
|
33 |
std::vector<std::string>& values);
|
35 |
std::vector<std::string>& values);
|