#ifndef SLOT_HEADERFILE
#define SLOT_HEADERFILE

#include "Channel.h"

class Slot : public Unit {

protected:
  Channel *comPort;

public:
  Slot();

  bool set_comPort(Channel *comPort);
  Channel *get_comPort();
};

#endif
