summaryrefslogtreecommitdiff
path: root/src/plugins/winrt/winrtrunconfiguration.h
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2018-09-12 12:20:33 +0200
committerOliver Wolff <oliver.wolff@qt.io>2018-09-14 05:15:31 +0000
commit29c07f48592eea1b61e09567d65b6add26c7caf0 (patch)
treed7bdbb52fcf371d6155d874ee7fd29f1cccc7f7b /src/plugins/winrt/winrtrunconfiguration.h
parent70fdbedbd8a8a4e00ef4e9ad282063115921a752 (diff)
downloadqt-creator-29c07f48592eea1b61e09567d65b6add26c7caf0.tar.gz
winrt: Add possibility to use loopbackExemption from Creator
In order to be able to communicate with loopback addresses, winrtrunner has to be passed loopbackExempt flags. Loopback exemption can only be used while developing/debugging and will not be added to final versions of the applications. Change-Id: Ia5e7ec9b106f86ba1971eac8514e652ccacb40c3 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io> Reviewed-by: hjk <hjk@qt.io> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/winrt/winrtrunconfiguration.h')
-rw-r--r--src/plugins/winrt/winrtrunconfiguration.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/plugins/winrt/winrtrunconfiguration.h b/src/plugins/winrt/winrtrunconfiguration.h
index 08be96f2b6..41621dbb36 100644
--- a/src/plugins/winrt/winrtrunconfiguration.h
+++ b/src/plugins/winrt/winrtrunconfiguration.h
@@ -38,6 +38,22 @@ public:
UninstallAfterStopAspect();
};
+class LoopbackExemptClientAspect : public ProjectExplorer::BaseBoolAspect
+{
+ Q_OBJECT
+
+public:
+ LoopbackExemptClientAspect();
+};
+
+class LoopbackExemptServerAspect : public ProjectExplorer::BaseBoolAspect
+{
+ Q_OBJECT
+
+public:
+ LoopbackExemptServerAspect();
+};
+
class WinRtRunConfiguration : public ProjectExplorer::RunConfiguration
{
Q_OBJECT