aboutsummaryrefslogtreecommitdiff
path: root/src/ls.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-03 17:27:26 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 17:36:28 +0100
commit7a982169c9dc3a673e922e7f3b9b73368cef0aae (patch)
tree7b9b28287d7ae934c0e75bd7f3b5f317ad7d2cac /src/ls.hxx
parentf2510d60fad1c5811fba3d253ef1c8dabb712304 (diff)
Client: rename the struct client to class Client
Diffstat (limited to 'src/ls.hxx')
-rw-r--r--src/ls.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ls.hxx b/src/ls.hxx
index 004bd2f8..8ae5a58f 100644
--- a/src/ls.hxx
+++ b/src/ls.hxx
@@ -20,10 +20,9 @@
#ifndef MPD_LS_HXX
#define MPD_LS_HXX
-#include <stdbool.h>
#include <stdio.h>
-struct client;
+class Client;
/**
* Checks whether the scheme of the specified URI is supported by MPD.
@@ -36,7 +35,7 @@ bool uri_supported_scheme(const char *url);
* Send a list of supported URI schemes to the client. This is the
* response to the "urlhandlers" command.
*/
-void print_supported_uri_schemes(struct client *client);
+void print_supported_uri_schemes(Client *client);
/**
* Send a list of supported URI schemes to a file pointer.