diff options
author | Max Kellermann <max@duempel.org> | 2013-01-03 17:27:26 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-03 17:36:28 +0100 |
commit | 7a982169c9dc3a673e922e7f3b9b73368cef0aae (patch) | |
tree | 7b9b28287d7ae934c0e75bd7f3b5f317ad7d2cac /src/QueuePrint.hxx | |
parent | f2510d60fad1c5811fba3d253ef1c8dabb712304 (diff) |
Client: rename the struct client to class Client
Diffstat (limited to 'src/QueuePrint.hxx')
-rw-r--r-- | src/QueuePrint.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/QueuePrint.hxx b/src/QueuePrint.hxx index 808b8dec1..6b3a29fb6 100644 --- a/src/QueuePrint.hxx +++ b/src/QueuePrint.hxx @@ -27,28 +27,28 @@ #include <stdint.h> -struct client; struct queue; class SongFilter; +class Client; void -queue_print_info(struct client *client, const struct queue *queue, +queue_print_info(Client *client, const struct queue *queue, unsigned start, unsigned end); void -queue_print_uris(struct client *client, const struct queue *queue, +queue_print_uris(Client *client, const struct queue *queue, unsigned start, unsigned end); void -queue_print_changes_info(struct client *client, const struct queue *queue, +queue_print_changes_info(Client *client, const struct queue *queue, uint32_t version); void -queue_print_changes_position(struct client *client, const struct queue *queue, +queue_print_changes_position(Client *client, const struct queue *queue, uint32_t version); void -queue_find(struct client *client, const struct queue *queue, +queue_find(Client *client, const struct queue *queue, const SongFilter &filter); #endif |