summaryrefslogtreecommitdiff
path: root/Ivy/IvyWatcher.h
diff options
context:
space:
mode:
authorfcolin2009-10-15 10:26:27 +0000
committerfcolin2009-10-15 10:26:27 +0000
commit473bf59297a9c8010fb35f505c872024ae3d259d (patch)
treeba296d860b9ecda9101b76f1eea4407daa997a38 /Ivy/IvyWatcher.h
parent3bd1423d9bd7374c2d39f9817e3a1caa836f86e6 (diff)
downloadivy-cplusplus-473bf59297a9c8010fb35f505c872024ae3d259d.zip
ivy-cplusplus-473bf59297a9c8010fb35f505c872024ae3d259d.tar.gz
ivy-cplusplus-473bf59297a9c8010fb35f505c872024ae3d259d.tar.bz2
ivy-cplusplus-473bf59297a9c8010fb35f505c872024ae3d259d.tar.xz
correction bug threaded IvyApplication
correction checkconnected self
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;
};