#ifndef SLAVEAGENTSLOTOFAGENT_HEADERFILE
#define SLAVEAGENTSLOTOFAGENT_HEADERFILE

#include "SlotOfAgent.h"

class SlaveAgentSlotOfAgent : public SlotOfAgent {

private:
  // TODO: set- and get function for maxNumOf_mountedSensors;
  float slaveAgentValue;
  bool flag_slaveAgentValueIsSet;
  bool flag_slaveAgentValueHasChanged;

public:
  SlaveAgentSlotOfAgent();

  void set_slaveAgentValue(float slaveAgentValue);
  bool get_slaveAgentValue(float *slaveAgentValue);
};

#endif
