From 0644a125482764eeb8c2898a3c58238596f281b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Volkan=20=C5=9Eahin?= Date: Fri, 11 Mar 2016 17:33:22 +0200 Subject: [PATCH] execution manager added to scope --- opt/ahenk/base/Scope.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/opt/ahenk/base/Scope.py b/opt/ahenk/base/Scope.py index fcb5cf4..19435ca 100644 --- a/opt/ahenk/base/Scope.py +++ b/opt/ahenk/base/Scope.py @@ -19,6 +19,7 @@ class Scope(object): self.responseQueue=None self.registration=None self.eventManager=None + self.executionManager=None @staticmethod @@ -86,3 +87,9 @@ class Scope(object): def setEventManager(self,eventManager): self.eventManager=eventManager + + def getExecutionManager(self): + return self.executionManager + + def setExecutionManager(self,executionManager): + self.executionManager=executionManager