ClientList: don't use GLib

Use std::list instead of GList.
This commit is contained in:
Max Kellermann
2013-01-09 08:12:44 +01:00
parent 377a2b9e07
commit 2564f763d7
5 changed files with 19 additions and 20 deletions

View File

@@ -20,8 +20,6 @@
#ifndef MPD_CLIENT_LIST_HXX
#define MPD_CLIENT_LIST_HXX
#include <glib.h>
class Client;
bool
@@ -37,7 +35,7 @@ void
client_list_add(Client *client);
void
client_list_foreach(GFunc func, gpointer user_data);
client_list_foreach(void (*callback)(Client *client, void *ctx), void *ctx);
void
client_list_remove(Client *client);