|
a/libupnpp/control/device.hxx |
|
b/libupnpp/control/device.hxx |
|
... |
|
... |
16 |
*/
|
16 |
*/
|
17 |
|
17 |
|
18 |
#ifndef _DEVICE_H_X_INCLUDED_
|
18 |
#ifndef _DEVICE_H_X_INCLUDED_
|
19 |
#define _DEVICE_H_X_INCLUDED_
|
19 |
#define _DEVICE_H_X_INCLUDED_
|
20 |
|
20 |
|
|
|
21 |
#include "libupnpp/control/description.hxx"
|
|
|
22 |
|
21 |
namespace UPnPClient {
|
23 |
namespace UPnPClient {
|
22 |
|
24 |
|
23 |
class Device {
|
25 |
class Device {
|
24 |
public:
|
26 |
public:
|
25 |
/* Something may get there one day... */
|
27 |
Device() {}
|
|
|
28 |
Device(const UPnPDeviceDesc& desc)
|
|
|
29 |
: m_desc(desc)
|
|
|
30 |
{
|
|
|
31 |
}
|
|
|
32 |
|
|
|
33 |
UPnPDeviceDesc m_desc;
|
26 |
};
|
34 |
};
|
|
|
35 |
|
27 |
}
|
36 |
}
|
|
|
37 |
|
28 |
#endif /* _DEVICE_H_X_INCLUDED_ */
|
38 |
#endif /* _DEVICE_H_X_INCLUDED_ */
|