Files
BloomPatched/src/Targets/TargetDescriptor.hpp

24 lines
498 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include <string>
#include <cstdint>
#include <vector>
#include <map>
2021-04-04 21:04:12 +01:00
#include "TargetRegister.hpp"
2021-04-04 21:04:12 +01:00
#include "TargetVariant.hpp"
namespace Bloom::Targets
{
struct TargetDescriptor
{
std::string name;
std::string id;
std::uint32_t ramSize;
std::map<TargetRegisterType, std::vector<TargetRegisterDescriptor>> registerDescriptorsByType;
2021-04-04 21:04:12 +01:00
std::vector<TargetVariant> variants;
};
}
2021-05-30 16:52:32 +01:00
Q_DECLARE_METATYPE(Bloom::Targets::TargetDescriptor)