12 lines
213 B
C++
12 lines
213 B
C++
#ifndef CONTROLLER_ROOT
|
|
#define CONTROLLER_ROOT
|
|
#include "controller/status.h"
|
|
#include "controller/event.h"
|
|
|
|
class root_controller_t {
|
|
public:
|
|
|
|
controller_status_t on_event(controller_event_t event);
|
|
};
|
|
#endif
|