libfast: add a fast_ prefix to all classes, avoiding namespace clashes
This commit is contained in:
@@ -21,8 +21,7 @@
|
||||
#ifndef AUTH_CONTROLLER_H_
|
||||
#define AUTH_CONTROLLER_H_
|
||||
|
||||
|
||||
#include <controller.h>
|
||||
#include <fast_controller.h>
|
||||
|
||||
typedef struct auth_controller_t auth_controller_t;
|
||||
|
||||
@@ -34,12 +33,12 @@ struct auth_controller_t {
|
||||
/**
|
||||
* Implements controller_t interface.
|
||||
*/
|
||||
controller_t controller;
|
||||
fast_controller_t controller;
|
||||
};
|
||||
|
||||
/**
|
||||
* Create a auth_controller controller instance.
|
||||
*/
|
||||
controller_t *auth_controller_create(context_t *context, void *param);
|
||||
fast_controller_t *auth_controller_create(fast_context_t *context, void *param);
|
||||
|
||||
#endif /** AUTH_CONTROLLER_H_ @}*/
|
||||
|
||||
Reference in New Issue
Block a user