#include "subscriber.h" using SSMD::Subscriber; Subscriber::Subscriber(const std::string & mac, unsigned port, unsigned upShape, unsigned downShape, unsigned upBurst, unsigned downBurst) : _mac(mac), _port(port), _upShape(upShape), _downShape(downShape), _upBurst(upBurst), _downBurst(downBurst) { } Subscriber::~Subscriber() { } std::string Subscriber::getHexMAC() const { return _mac; }