summaryrefslogtreecommitdiffstats
path: root/src/app/Queue/queue_mgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/Queue/queue_mgr.h')
-rw-r--r--src/app/Queue/queue_mgr.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/app/Queue/queue_mgr.h b/src/app/Queue/queue_mgr.h
new file mode 100644
index 0000000..c2b8bc9
--- /dev/null
+++ b/src/app/Queue/queue_mgr.h
@@ -0,0 +1,26 @@
+#ifndef QUEUE_MGR_H
+#define QUEUE_MGR_H
+
+#include "queue.h"
+#include <tqmap.h>
+
+/**
+ * QueueManager holds multiple queues and has a static
+ * method that fetches a queue by name. calling it with
+ * no arguments will fetch the default queue
+ */
+class QueueManager
+{
+ static const TQString defaultName;
+public:
+ QueueManager();
+ ~QueueManager();
+
+ static Queue* queue(const TQString& queueName=defaultName);
+ TQValueList<TQString> queues() const;
+
+protected:
+ static TQMap<TQString, Queue*> _queues;
+};
+
+#endif // QUEUE_MGR_H