a/libupnpp/device/device.hxx b/libupnpp/device/device.hxx
...
...
42
        : content(ct), mimetype(mt) {}
42
        : content(ct), mimetype(mt) {}
43
    std::string content;
43
    std::string content;
44
    std::string mimetype;
44
    std::string mimetype;
45
};
45
};
46
46
47
/** Define a virtual interface to link libupnp operations to a device 
47
/** Define an interface to link libupnp operations to a device implementation 
48
 * implementation 
49
 */
48
 */
50
class UpnpDevice {
49
class UpnpDevice {
51
public:
50
public:
52
    /** Construct device object. Do not start it (this is done by the
51
    /** Construct device object. Do not start it (this is done by the
53
     *   eventloop() call when everything is set up).
52
     *   eventloop() call when everything is set up).