Olivier Smeesters / Mbed 2 deprecated DtmfKit

Dependencies:   mbed ExtTextLCD

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers state_base.cpp Source File

state_base.cpp

00001 #include "system_states.hpp"
00002 #include "system.hpp"
00003 
00004 StateBase::StateBase(System::StateId id, System *system) : system_(system) {
00005     this->system_->registerState(id, this);
00006 }
00007     
00008 StateBase::~StateBase() {
00009     this->system_->unregisterState(this);
00010 }