aboutsummaryrefslogtreecommitdiffstats
path: root/src/InotifyQueue.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/InotifyQueue.hxx')
-rw-r--r--src/InotifyQueue.hxx22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/InotifyQueue.hxx b/src/InotifyQueue.hxx
index 158a5dbb5..a30cdf094 100644
--- a/src/InotifyQueue.hxx
+++ b/src/InotifyQueue.hxx
@@ -20,13 +20,23 @@
#ifndef MPD_INOTIFY_QUEUE_HXX
#define MPD_INOTIFY_QUEUE_HXX
-void
-mpd_inotify_queue_init(void);
+#include <glib.h>
-void
-mpd_inotify_queue_finish(void);
+#include <list>
+#include <string>
-void
-mpd_inotify_enqueue(const char *uri_utf8);
+class InotifyQueue {
+ std::list<std::string> queue;
+ guint source_id;
+
+public:
+ ~InotifyQueue();
+
+ void Enqueue(const char *uri_utf8);
+
+private:
+ bool Run();
+ static gboolean Run(gpointer ctx);
+};
#endif