/* * clockctrl.h * * Created on: Oct 16, 2014 * Author: Alan Aguilar Sologuren */ #ifndef TIMEENGINE_CLOCKCTRL_H_ #define TIMEENGINE_CLOCKCTRL_H_ #include "../utils/defs.h" class clock_ctrl { public: clock_ctrl(); virtual ~clock_ctrl(); bool clockCtrl_configure(void*); bool clockCtrl_get_state(void*); private: clock_config_struct* clk_config; clock_state_struct* clk_state; }; #endif /* TIMEENGINE_CLOCKCTRL_H_ */