Extracting interfaces from TDFs

This commit is contained in:
Nav
2021-06-26 03:47:23 +01:00
parent 1f7907699f
commit ad18ff94fa
3 changed files with 52 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
#include <string>
#include <optional>
namespace Bloom::Targets::TargetDescription
{
struct Interface
{
std::string name;
std::optional<std::string> type;
};
}