summaryrefslogtreecommitdiff
path: root/includes/Task.h
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-12-21 23:49:52 -0800
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2013-12-21 23:49:52 -0800
commit4fb18f31865f9766579d7221b040b1da9c98b561 (patch)
tree3ae77b80dd383c9c623c15c06e6144cfc084f228 /includes/Task.h
parenta46ed587d6bac9dcda69b56979b2f0398013b5ef (diff)
WebSockets can now send frames.
Diffstat (limited to 'includes/Task.h')
-rw-r--r--includes/Task.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/Task.h b/includes/Task.h
index 7521b9f..0f04b32 100644
--- a/includes/Task.h
+++ b/includes/Task.h
@@ -344,6 +344,7 @@ class TQueue : public QueueBase {
public:
void push(T * t) { iPush(t, &m_event); }
T * pop() { return (T *) iPop(&m_event, true); }
+ Events::Async * getEvent() { return &m_event; }
private:
Events::Async m_event;
};