diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-09-05 19:10:03 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-09-05 19:10:03 +0200 |
commit | db5e55e026d897f41e22dd470c1a41a39951d7fb (patch) | |
tree | 0c78f1817e63f4f050cc8d7341c65cd80b9a3727 | |
parent | 23d0bd8edde6aadfaa282215b5f143ad16210438 (diff) | |
download | MultiMC-db5e55e026d897f41e22dd470c1a41a39951d7fb.tar MultiMC-db5e55e026d897f41e22dd470c1a41a39951d7fb.tar.gz MultiMC-db5e55e026d897f41e22dd470c1a41a39951d7fb.tar.lz MultiMC-db5e55e026d897f41e22dd470c1a41a39951d7fb.tar.xz MultiMC-db5e55e026d897f41e22dd470c1a41a39951d7fb.zip |
SCRATCH NetAction fix
-rw-r--r-- | logic/net/NetAction.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/logic/net/NetAction.h b/logic/net/NetAction.h index 85eac8e3..faf4dbe0 100644 --- a/logic/net/NetAction.h +++ b/logic/net/NetAction.h @@ -21,6 +21,8 @@ #include <QNetworkReply> #include <QObjectPtr.h> +#include "multimc_logic_export.h" + enum JobStatus { Job_NotStarted, @@ -30,7 +32,7 @@ enum JobStatus }; typedef std::shared_ptr<class NetAction> NetActionPtr; -class NetAction : public QObject, public std::enable_shared_from_this<NetAction> +class MULTIMC_LOGIC_EXPORT NetAction : public QObject, public std::enable_shared_from_this<NetAction> { Q_OBJECT protected: |