initial commit

This commit is contained in:
faraphel 2024-12-22 23:05:52 +01:00
commit 811f80c92c
17 changed files with 549 additions and 0 deletions

12
source/gns3/GnsPort.cpp Normal file
View file

@ -0,0 +1,12 @@
#include "GnsPort.hpp"
namespace gns {
GnsPort::GnsPort(const std::optional<std::string>& mac_address) {
this->mac_address = mac_address;
}
}