diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-02-24 19:12:39 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-02-24 19:18:05 (GMT) |
commit | 90d6b45adf84976d99911feb3fb09b27cb6a8d1e (patch) | |
tree | 3e49f71aef78b3d95d5318ca8e1f42305628da9f /Swiften/EventLoop/SimpleEventLoop.h | |
parent | 442420335b9533b2a43c6e3f09758a94af045a84 (diff) | |
download | swift-contrib-90d6b45adf84976d99911feb3fb09b27cb6a8d1e.zip swift-contrib-90d6b45adf84976d99911feb3fb09b27cb6a8d1e.tar.bz2 |
Added debugging switch to Sluift.
Diffstat (limited to 'Swiften/EventLoop/SimpleEventLoop.h')
-rw-r--r-- | Swiften/EventLoop/SimpleEventLoop.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Swiften/EventLoop/SimpleEventLoop.h b/Swiften/EventLoop/SimpleEventLoop.h index 86195e1..bdffa3d 100644 --- a/Swiften/EventLoop/SimpleEventLoop.h +++ b/Swiften/EventLoop/SimpleEventLoop.h @@ -19,12 +19,20 @@ namespace Swift { SimpleEventLoop(); ~SimpleEventLoop(); - void run(); + void run() { + doRun(false); + } + + void runUntilEvents() { + doRun(true); + } + void stop(); virtual void post(const Event& event); private: + void doRun(bool breakAfterEvents); void doStop(); private: |