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

@@ -24,7 +24,7 @@
#include <stdbool.h>
struct client;
class Client;
/**
* Is this client allowed to use the specified local file?
@@ -37,7 +37,7 @@ struct client;
* @return true if access is allowed
*/
bool
client_allow_file(const struct client *client, const char *path_fs,
client_allow_file(const Client *client, const char *path_fs,
GError **error_r);
#endif