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 #include "system_states.hpp"
osmeest 0:1324e7d9d471 2 #include "system.hpp"
osmeest 0:1324e7d9d471 3
osmeest 0:1324e7d9d471 4 StateBase::StateBase(System::StateId id, System *system) : system_(system) {
osmeest 0:1324e7d9d471 5 this->system_->registerState(id, this);
osmeest 0:1324e7d9d471 6 }
osmeest 0:1324e7d9d471 7
osmeest 0:1324e7d9d471 8 StateBase::~StateBase() {
osmeest 0:1324e7d9d471 9 this->system_->unregisterState(this);
osmeest 0:1324e7d9d471 10 }