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