network-simulator/netsim/include/Device.hpp
2023-06-30 01:19:45 +02:00

20 lines
401 B
C++

#pragma once
#include <cstdint>
#include <string>
#include <memory>
class Device {
public:
friend std::ostream& operator<<(std::ostream& os, const Device& device);
public:
Device(const std::string& macAddress);
static std::shared_ptr<Device> create(const std::string& macAddress);
private:
void parseAndSetMac(const std::string& macAddress);
private:
uint8_t macAddress[6];
};