22 lines
344 B
C++
22 lines
344 B
C++
/*
|
|
* 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 */
|