Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
state.hpp
00001 #ifndef _STATE_HPP 00002 #define _STATE_HPP 00003 00004 #include "keyboard_manager.hpp" 00005 00006 class State { 00007 public: 00008 virtual void enterState() {} 00009 virtual void exitState() {} 00010 00011 virtual void handleKey(char key) {} 00012 00013 virtual ~State() {} 00014 }; 00015 00016 #endif
Generated on Wed Jul 13 2022 16:23:43 by
1.7.2