summaryrefslogtreecommitdiff
path: root/Ivy/IvyWatcher.h
diff options
context:
space:
mode:
Diffstat (limited to 'Ivy/IvyWatcher.h')
-rw-r--r--Ivy/IvyWatcher.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Ivy/IvyWatcher.h b/Ivy/IvyWatcher.h
index 1eb0718..1ce8a2f 100644
--- a/Ivy/IvyWatcher.h
+++ b/Ivy/IvyWatcher.h
@@ -20,6 +20,7 @@ public:
public:
IvyWatcher(Ivy *bus);
virtual ~IvyWatcher();
+ bool IsRunning() { return running; };
// Overrides
public:
void start(const char *domain);
@@ -29,6 +30,6 @@ public:
// Implementation
protected:
Ivy * bus;
-
+ bool running;
};