libfast: add a fast_ prefix to all classes, avoiding namespace clashes

This commit is contained in:
Martin Willi
2013-07-18 12:24:38 +02:00
parent 569d114de8
commit 890f20989f
34 changed files with 372 additions and 369 deletions
+3 -3
View File
@@ -24,7 +24,7 @@
#include <user.h>
#include <controller.h>
#include <fast_controller.h>
#include <database/database.h>
typedef struct peer_controller_t peer_controller_t;
@@ -37,12 +37,12 @@ struct peer_controller_t {
/**
* Implements controller_t interface.
*/
controller_t controller;
fast_controller_t controller;
};
/**
* Create a peer_controller controller instance.
*/
controller_t *peer_controller_create(user_t *user, database_t *db);
fast_controller_t *peer_controller_create(user_t *user, database_t *db);
#endif /** PEER_CONTROLLER_H_ @}*/