2 * @file status_controller.h
4 * @brief Interface of status_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 STATUS_CONTROLLER_H_
24 #define STATUS_CONTROLLER_H_
27 #include <controller.h>
29 typedef struct status_controller_t status_controller_t
;
32 * @brief Status controller.
34 struct status_controller_t
{
37 * Implements controller_t interface.
39 controller_t controller
;
43 * @brief Create a status_controller controller instance.
45 controller_t
*status_controller_create(context_t
*context
, void *param
);
47 #endif /* STATUS_CONTROLLER_H_ */