|
a/libupnpp/control/cdirectory.cxx |
|
b/libupnpp/control/cdirectory.cxx |
|
... |
|
... |
12 |
* You should have received a copy of the GNU General Public License
|
12 |
* You should have received a copy of the GNU General Public License
|
13 |
* along with this program; if not, write to the
|
13 |
* along with this program; if not, write to the
|
14 |
* Free Software Foundation, Inc.,
|
14 |
* Free Software Foundation, Inc.,
|
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 |
#include "config.h"
|
17 |
//#include "config.h"
|
18 |
|
18 |
|
19 |
#include <stdio.h>
|
19 |
#include "libupnpp/control/cdirectory.hxx"
|
20 |
#include <stdlib.h>
|
|
|
21 |
|
20 |
|
22 |
#include <string>
|
21 |
#include <upnp/upnp.h> // for UPNP_E_SUCCESS, etc
|
23 |
#include <iostream>
|
22 |
#include <upnp/upnptools.h> // for UpnpGetErrorMessage
|
24 |
#include <set>
|
23 |
|
25 |
#include <vector>
|
24 |
#include <functional> // for _Bind, bind, _1, _2
|
|
|
25 |
#include <iostream> // for operator<<, basic_ostream, etc
|
|
|
26 |
#include <set> // for set
|
|
|
27 |
#include <string> // for string, operator<<, etc
|
|
|
28 |
#include <vector> // for vector
|
|
|
29 |
|
|
|
30 |
#include "libupnpp/control/cdircontent.hxx" // for UPnPDirContent
|
|
|
31 |
#include "libupnpp/control/description.hxx" // for UPnPDeviceDesc, etc
|
|
|
32 |
#include "libupnpp/control/discovery.hxx" // for UPnPDeviceDirectory, etc
|
|
|
33 |
#include "libupnpp/log.hxx" // for LOGDEB, LOGINF, LOGERR
|
|
|
34 |
#include "libupnpp/soaphelp.hxx" // for SoapEncodeInput, SoapArgs, etc
|
|
|
35 |
#include "libupnpp/upnpp_p.hxx" // for csvToStrings
|
|
|
36 |
|
26 |
using namespace std;
|
37 |
using namespace std;
|
27 |
#include <functional>
|
|
|
28 |
using namespace std::placeholders;
|
38 |
using namespace std::placeholders;
|
29 |
|
|
|
30 |
|
|
|
31 |
#include <upnp/upnp.h>
|
|
|
32 |
#include <upnp/upnptools.h>
|
|
|
33 |
|
|
|
34 |
#include "libupnpp/upnpp_p.hxx"
|
|
|
35 |
#include "libupnpp/upnpplib.hxx"
|
|
|
36 |
#include "libupnpp/ixmlwrap.hxx"
|
|
|
37 |
#include "libupnpp/soaphelp.hxx"
|
|
|
38 |
#include "libupnpp/log.hxx"
|
|
|
39 |
#include "libupnpp/control/cdirectory.hxx"
|
|
|
40 |
#include "libupnpp/control/cdircontent.hxx"
|
|
|
41 |
#include "libupnpp/control/discovery.hxx"
|
|
|
42 |
|
39 |
|
43 |
namespace UPnPClient {
|
40 |
namespace UPnPClient {
|
44 |
|
41 |
|
45 |
// The service type string for Content Directories:
|
42 |
// The service type string for Content Directories:
|
46 |
const string ContentDirectory::SType("urn:schemas-upnp-org:service:ContentDirectory:1");
|
43 |
const string ContentDirectory::SType("urn:schemas-upnp-org:service:ContentDirectory:1");
|