Updated TDF physical interface extraction to align with new TDF format
This commit is contained in:
21
src/Targets/TargetDescription/PhysicalInterface.hpp
Normal file
21
src/Targets/TargetDescription/PhysicalInterface.hpp
Normal 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)
|
||||
{}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user