#ifndef CHANNELSLOTOFTESTBENCH_HEADERFILE
#define CHANNELSLOTOFTESTBENCH_HEADERFILE

#include "Channel.h"

class ChannelSlotOfTestbench {

protected:
  Channel *channel;

  void init_channelSlotOfTestbench();

public:
  ChannelSlotOfTestbench();

  bool set_channel(Channel *channel);
  bool del_channel();
  Channel *get_channel();
};

#endif
