
#include "LayeredControlInput.h"
#include "Syslog.h"

LayeredControlInput::LayeredControlInput(Access access, Boolean init)
  : SharedData(LayeredControlInputName, 
               sizeof(LayeredControlInput::Data),
               access, init)
{
}


LayeredControlInput::~LayeredControlInput()
{
}


void LayeredControlInput::read()
{
  SharedData::read((void *)&data);
}

void LayeredControlInput::write()
{
  SharedData::write((void *)&data);
}



