cppast/src/refl/template/meta_impl.liquid

7 lines
254 B
Plaintext
Raw Normal View History

2024-06-20 22:32:20 +08:00
{{ Indent }}template<> struct MetaImpl<{{FullName}}>{
{{ Indent }} using T = class {{FullName}};
{{ Indent }} using MyMeta = _Meta<T, Meta>;
{{ Indent }}{%- if IsMultyMeta %}
{{ Indent }} using MyMetas = _Multy<T>;
{{ Indent }}{%- endif %}
{{ Indent }}};