Updated TDF physical interface extraction to align with new TDF format

This commit is contained in:
Nav
2024-02-15 19:40:22 +00:00
parent 9c038ddaaf
commit f33b4d8c70
4 changed files with 49 additions and 52 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include <cstdint>
#include <string>
namespace Targets::TargetDescription
{
struct PhysicalInterface
{
std::string name;
std::string type;
PhysicalInterface(
const std::string& name,
const std::string& type
)
: name(name)
, type(type)
{}
};
}