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

Dependencies:   mbed ExtTextLCD

state.hpp

Committer:
osmeest
Date:
2011-03-07
Revision:
0:1324e7d9d471

File content as of revision 0:1324e7d9d471:

#ifndef _STATE_HPP
#define _STATE_HPP

#include "keyboard_manager.hpp"

class State {
public:
    virtual void enterState() {}
    virtual void exitState() {}

    virtual void handleKey(char key) {}
    
    virtual ~State() {}
};

#endif