2014-03-28 23:33:35 +08:00
|
|
|
#ifndef GMIO_SUPPORT_QT_STREAM_H
|
|
|
|
#define GMIO_SUPPORT_QT_STREAM_H
|
|
|
|
|
|
|
|
#include "support_global.h"
|
|
|
|
struct gmio_stream;
|
|
|
|
class QIODevice;
|
|
|
|
|
2014-11-21 18:39:23 +08:00
|
|
|
/*! \brief Configures \p stream for \c QIODevice* (cookie will hold \p device)
|
|
|
|
*/
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_LIBSUPPORT_EXPORT
|
|
|
|
void gmio_stream_set_qiodevice(struct gmio_stream* stream, QIODevice* device);
|
|
|
|
|
|
|
|
#endif /* GMIO_SUPPORT_QT_STREAM_H */
|