|
a/libupnpp/control/avtransport.hxx |
|
b/libupnpp/control/avtransport.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 _AVTRANSPORT_HXX_INCLUDED_
|
17 |
#ifndef _AVTRANSPORT_HXX_INCLUDED_
|
18 |
#define _AVTRANSPORT_HXX_INCLUDED_
|
18 |
#define _AVTRANSPORT_HXX_INCLUDED_
|
19 |
|
19 |
|
20 |
#include <string>
|
20 |
#include <memory> // for shared_ptr
|
21 |
#include <memory>
|
21 |
#include <string> // for string
|
|
|
22 |
#include <unordered_map> // for unordered_map
|
22 |
|
23 |
|
|
|
24 |
#include "libupnpp/control/cdircontent.hxx" // for UPnPDirObject
|
23 |
#include "libupnpp/control/service.hxx"
|
25 |
#include "libupnpp/control/service.hxx" // for Service
|
|
|
26 |
|
|
|
27 |
namespace UPnPClient { class AVTransport; }
|
|
|
28 |
namespace UPnPClient { class UPnPDeviceDesc; }
|
|
|
29 |
namespace UPnPClient { class UPnPServiceDesc; }
|
24 |
|
30 |
|
25 |
namespace UPnPClient {
|
31 |
namespace UPnPClient {
|
26 |
|
32 |
|
27 |
class AVTransport;
|
|
|
28 |
typedef std::shared_ptr<AVTransport> AVTH;
|
33 |
typedef std::shared_ptr<AVTransport> AVTH;
|
29 |
|
34 |
|
30 |
/**
|
35 |
/**
|
31 |
* AVTransport Service client class.
|
36 |
* AVTransport Service client class.
|
32 |
*
|
37 |
*
|