initial commit
This commit is contained in:
commit
811f80c92c
17 changed files with 549 additions and 0 deletions
20
source/gns3/GnsPort.hpp
Normal file
20
source/gns3/GnsPort.hpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
#include <optional>
|
||||
#include <string>
|
||||
|
||||
|
||||
namespace gns {
|
||||
|
||||
|
||||
/**
|
||||
* Represent a port of a GNS3 node
|
||||
*/
|
||||
class GnsPort {
|
||||
public:
|
||||
explicit GnsPort(const std::optional<std::string>& mac_address);
|
||||
|
||||
std::optional<std::string> mac_address;
|
||||
};
|
||||
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue