Client: rename the struct client to class Client

This commit is contained in:
Max Kellermann
2013-01-03 17:27:26 +01:00
parent f2510d60fa
commit 7a982169c9
63 changed files with 401 additions and 379 deletions

View File

@@ -20,13 +20,13 @@
#ifndef MPD_SONG_PRINT_HXX
#define MPD_SONG_PRINT_HXX
struct client;
struct song;
class Client;
void
song_print_info(struct client *client, struct song *song);
song_print_info(Client *client, struct song *song);
void
song_print_uri(struct client *client, struct song *song);
song_print_uri(Client *client, struct song *song);
#endif