blob: 81a64efbf28d0aee57a66c7d7525442149db1149 [file] [log] [blame] [edit]
{{/*
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
*/}}
{{- define "Alias:NaturalTypesHeader" }}
{{ EnsureNamespace . -}}
{{ if .IsResourceType }}
{{- IfdefFuchsia -}}
{{- end }}
using {{ .Name }} = {{ .Type }};
{{- if .IsResourceType }}
{{- EndifFuchsia -}}
{{- end }}
{{- end }}
{{- define "Alias:WireTypesHeader" }}
{{ EnsureNamespace . -}}
{{ if .IsResourceType }}
{{- IfdefFuchsia -}}
{{- end }}
using {{ .Name }} = {{ .Type }};
{{- if .IsResourceType }}
{{- EndifFuchsia -}}
{{- end }}
{{- end }}