Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'python/src/tcf/services/pathmap.py')
-rw-r--r--python/src/tcf/services/pathmap.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/src/tcf/services/pathmap.py b/python/src/tcf/services/pathmap.py
index 85de42616..ed96042e7 100644
--- a/python/src/tcf/services/pathmap.py
+++ b/python/src/tcf/services/pathmap.py
@@ -52,6 +52,14 @@ PROTOCOL_HOST = "host"
PROTOCOL_TARGET = "target"
+class PathMapListener(object):
+ """Pathmap event listener is notified when pathmap changes."""
+
+ def changed(self):
+ """Called when a pathmap has been changed."""
+ pass
+
+
class PathMapRule(object):
"""
PathMapRule represents a single file path mapping rule.

Back to the top