2 * @file config_controller.h
4 * @brief Interface of config_controller_t.
9 * Copyright (C) 2007 Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #ifndef CONFIG_CONTROLLER_H_
24 #define CONFIG_CONTROLLER_H_
27 #include <controller.h>
29 typedef struct config_controller_t config_controller_t
;
32 * @brief Status controller.
34 struct config_controller_t
{
37 * Implements controller_t interface.
39 controller_t controller
;
43 * @brief Create a config_controller controller instance.
45 controller_t
*config_controller_create(context_t
*context
, void *param
);
47 #endif /* CONFIG_CONTROLLER_H_ */