1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-04-06 20:52:41 +00:00
harbour-sailfin/core/codegen/enum_header.hbs
Chris Josten f71c7a991b [1/3] update openapi spec: update generator
Update the generator to be able to handle the new challenges that arose
with the new specification, namely:

- Enums that do not start with a capital letter
- Enums that contain a reserved keyword
- Basic handling 'allOf' keys in properties

Additionally, the comparison enum deserialisation is now
case-insensitive.
2025-03-19 22:06:54 +01:00

31 lines
527 B
Handlebars

class {{className}}Class {
Q_GADGET
public:
enum Value {
EnumNotSet,
{{#each entries as |entry|}}
{{entry.name}},
{{/each}}
};
Q_ENUM(Value)
private:
explicit {{className}}Class();
};
using {{className}} = {{className}}Class::Value;
} // NS DTO
namespace Support {
using {{className}} = Jellyfin::DTO::{{className}};
template <>
{{className}} fromJsonValue(const QJsonValue &source, convertType<{{className}}>);
template <>
QJsonValue toJsonValue(const {{className}} &source, convertType<{{className}}>);