2021-04-04 21:04:12 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <optional>
|
|
|
|
|
|
2023-08-13 15:47:51 +01:00
|
|
|
namespace Targets::TargetDescription
|
2021-04-04 21:04:12 +01:00
|
|
|
{
|
2021-05-31 01:01:14 +01:00
|
|
|
struct Signal
|
|
|
|
|
{
|
2021-04-04 21:04:12 +01:00
|
|
|
std::string padName;
|
|
|
|
|
std::string function;
|
|
|
|
|
std::optional<int> index;
|
|
|
|
|
std::string group;
|
|
|
|
|
};
|
|
|
|
|
}
|