Files
BloomPatched/src/Targets/TargetDescription/PropertyGroup.hpp

26 lines
496 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include <string>
#include <QString>
#include <map>
namespace Bloom::Targets::TargetDescription
2021-04-04 21:04:12 +01:00
{
struct Property
{
2021-04-04 21:04:12 +01:00
std::string name;
/*
* We use QString here as we're dealing with arbitrary values and QString provides many helpful
* functions to make this easier.
*/
QString value;
};
struct PropertyGroup
{
2021-04-04 21:04:12 +01:00
std::string name;
std::map<std::string, Property> propertiesMappedByName;
};
}