/* * controller_state.cpp * * Created on: Mar 5, 2014 * Author: jonny */ #include "ControllerState.h" namespace controller { ControllerState::ControllerState(unsigned int numberOfBanks) : bankStates(numberOfBanks) { } ControllerState::~ControllerState() { // TODO Auto-generated destructor stub } } /* namespace controller */