blob: 532aff0c2becfb1ebf5d9f8a295190a3b1f5ed2b [file] [log] [blame]
{{/*
// Copyright 2022 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 "Filename:driver/NaturalMessagingSource" -}}
fidl/{{ .LibraryDots }}/cpp/driver/natural_messaging.cc
{{- end }}
{{- define "File:driver/NaturalMessagingSource" -}}
{{- UseUnified -}}
{{- SetTransport "Driver" -}}
#include <{{ .Library | Filename "driver/NaturalMessagingHeader" }}>
{{- range .Decls }}
{{- if Eq .Kind Kinds.Protocol }}{{ $protocol := . }}
{{- range $transport, $_ := .Transports }}
{{- if eq $transport "Driver" -}}
{{- template "Protocol:Details:NaturalMessagingSource" $protocol }}
{{- template "Protocol:Client:driver/NaturalMessagingSource" $protocol }}
{{- template "Protocol:EventHandler:NaturalMessagingSource" $protocol }}
{{- template "Protocol:Interface:NaturalMessagingSource" $protocol }}
{{- template "Protocol:Dispatcher:NaturalMessagingSource" $protocol }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{ UnsetTransport -}}
{{ EndOfFile }}
{{ end }}