A DTMF sequence editor and player for HAM radio equipment command & control.

Dependencies:   mbed ExtTextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers state.hpp Source File

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