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

Dependencies:   mbed ExtTextLCD

Committer:
osmeest
Date:
Mon Mar 07 22:51:19 2011 +0000
Revision:
0:1324e7d9d471

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
osmeest 0:1324e7d9d471 1 #ifndef _STATE_HPP
osmeest 0:1324e7d9d471 2 #define _STATE_HPP
osmeest 0:1324e7d9d471 3
osmeest 0:1324e7d9d471 4 #include "keyboard_manager.hpp"
osmeest 0:1324e7d9d471 5
osmeest 0:1324e7d9d471 6 class State {
osmeest 0:1324e7d9d471 7 public:
osmeest 0:1324e7d9d471 8 virtual void enterState() {}
osmeest 0:1324e7d9d471 9 virtual void exitState() {}
osmeest 0:1324e7d9d471 10
osmeest 0:1324e7d9d471 11 virtual void handleKey(char key) {}
osmeest 0:1324e7d9d471 12
osmeest 0:1324e7d9d471 13 virtual ~State() {}
osmeest 0:1324e7d9d471 14 };
osmeest 0:1324e7d9d471 15
osmeest 0:1324e7d9d471 16 #endif