summaryrefslogtreecommitdiffstats
path: root/common/threadboundary.h
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2016-02-09 16:14:31 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2016-02-09 16:14:31 +0100
commitd5b4d64ca0609f65cda606d1456f4040ff008cda (patch)
tree8e700409faa481609a2e678d2dc4eb2a520b5ef1 /common/threadboundary.h
parent2b79fb7b6a4759086302c68d63731256465bc5fe (diff)
downloadsink-d5b4d64ca0609f65cda606d1456f4040ff008cda.tar.gz
sink-d5b4d64ca0609f65cda606d1456f4040ff008cda.zip
Use Sink instead of SinkCommon
Diffstat (limited to 'common/threadboundary.h')
-rw-r--r--common/threadboundary.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/threadboundary.h b/common/threadboundary.h
index 193eb56..7bea4ea 100644
--- a/common/threadboundary.h
+++ b/common/threadboundary.h
@@ -20,7 +20,7 @@
20 20
21#pragma once 21#pragma once
22 22
23#include "sinkcommon_export.h" 23#include "sink_export.h"
24 24
25#include <QObject> 25#include <QObject>
26#include <functional> 26#include <functional>
@@ -31,7 +31,7 @@ namespace async {
31* A helper class to invoke a method in a different thread using the event loop. 31* A helper class to invoke a method in a different thread using the event loop.
32* The ThreadBoundary object must live in the thread where the function should be called. 32* The ThreadBoundary object must live in the thread where the function should be called.
33*/ 33*/
34class SINKCOMMON_EXPORT ThreadBoundary : public QObject { 34class SINK_EXPORT ThreadBoundary : public QObject {
35 Q_OBJECT 35 Q_OBJECT
36public: 36public:
37 ThreadBoundary(); 37 ThreadBoundary();