summaryrefslogtreecommitdiff
path: root/tests/logic_.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/logic_.h')
-rw-r--r--tests/logic_.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/logic_.h b/tests/logic_.h
index a02a003..2a14a62 100644
--- a/tests/logic_.h
+++ b/tests/logic_.h
@@ -83,12 +83,21 @@ public:
{
m_logic.timerStart(interval);
}
-
void timerStop()
{
m_logic.timerStop();
}
+ // gio operation
+ void run(guint timeout)
+ {
+ m_logic.run(timeout);
+ }
+ bool is_gmain_loop_running()
+ {
+ return m_logic.is_gmain_loop_running();
+ }
+
private:
Logic_ m_logic;
};