summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/remoteobjects/qconnectionfactories.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/remoteobjects/qconnectionfactories.h b/src/remoteobjects/qconnectionfactories.h
index 8556f3a..bf35327 100644
--- a/src/remoteobjects/qconnectionfactories.h
+++ b/src/remoteobjects/qconnectionfactories.h
@@ -49,7 +49,7 @@ QT_BEGIN_NAMESPACE
//The Qt servers create QIODevice derived classes from handleConnection.
//The problem is that they behave differently, so this class adds some
//consistency.
-class ServerIoDevice : public QObject
+class Q_REMOTEOBJECTS_EXPORT ServerIoDevice : public QObject
{
Q_OBJECT
Q_DISABLE_COPY(ServerIoDevice)
@@ -81,7 +81,7 @@ private:
QDataStream m_dataStream;
};
-class QConnectionAbstractServer : public QObject
+class Q_REMOTEOBJECTS_EXPORT QConnectionAbstractServer : public QObject
{
Q_OBJECT
Q_DISABLE_COPY(QConnectionAbstractServer)
@@ -104,7 +104,7 @@ Q_SIGNALS:
void newConnection();
};
-class ClientIoDevice : public QObject
+class Q_REMOTEOBJECTS_EXPORT ClientIoDevice : public QObject
{
Q_OBJECT
Q_DISABLE_COPY(ClientIoDevice)