|
a/libupnpp/control/service.hxx |
|
b/libupnpp/control/service.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 _SERVICE_H_X_INCLUDED_
|
17 |
#ifndef _SERVICE_H_X_INCLUDED_
|
18 |
#define _SERVICE_H_X_INCLUDED_
|
18 |
#define _SERVICE_H_X_INCLUDED_
|
19 |
|
19 |
|
20 |
#include <string>
|
20 |
#include <upnp/upnp.h> // for UPNP_E_BAD_RESPONSE, etc
|
21 |
#include <functional>
|
|
|
22 |
#include <unordered_map>
|
|
|
23 |
#include <iostream>
|
|
|
24 |
|
21 |
|
25 |
#include <upnp/upnp.h>
|
22 |
#include <functional> // for function
|
|
|
23 |
#include <iostream> // for basic_ostream, operator<<, etc
|
|
|
24 |
#include <string> // for string, operator<<, etc
|
|
|
25 |
#include <unordered_map> // for unordered_map
|
|
|
26 |
#include <vector> // for vector
|
26 |
|
27 |
|
27 |
#include "libupnpp/log.hxx"
|
|
|
28 |
#include "libupnpp/soaphelp.hxx"
|
|
|
29 |
#include "libupnpp/control/description.hxx"
|
|
|
30 |
#include "libupnpp/control/cdircontent.hxx"
|
28 |
#include "libupnpp/control/cdircontent.hxx" // for UPnPDirObject
|
|
|
29 |
#include "libupnpp/log.hxx" // for LOGERR
|
|
|
30 |
#include "libupnpp/soaphelp.hxx" // for SoapDecodeOutput, etc
|
|
|
31 |
|
|
|
32 |
namespace UPnPClient { class UPnPDeviceDesc; }
|
|
|
33 |
namespace UPnPClient { class UPnPServiceDesc; }
|
31 |
|
34 |
|
32 |
using namespace UPnPP;
|
35 |
using namespace UPnPP;
|
33 |
|
36 |
|
34 |
namespace UPnPClient {
|
37 |
namespace UPnPClient {
|
35 |
|
38 |
|