Added BCValue creation, part II.

This commit is contained in:
2025-12-16 21:21:59 +01:00
parent b0d347ef79
commit afb5828a65
6 changed files with 80 additions and 12 deletions

13
bc.h
View File

@@ -742,5 +742,18 @@ public:
Q_ENUM(ID)
};
using namespace Qt::Literals::StringLiterals; // Für _L1
namespace BCTags
{
inline constexpr auto Device = "Device"_L1;
inline constexpr auto ID = "ID"_L1;
inline constexpr auto Default = "Default"_L1;
inline constexpr auto Current = "Current"_L1;
inline constexpr auto UnitType = "UnitType"_L1;
inline constexpr auto Min = "Min"_L1;
inline constexpr auto Max = "Max"_L1;
inline constexpr auto Factor = "Factor"_L1;
}
#endif // BC_H