blob: db422254a664bea3e40e04c63e5068e9e05fa7ef [file] [log] [blame]
// Copyright 2021 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.
package codegen
const tmplProtocolDecoderEncoders = `
{{- define "ProtocolDecoderEncoders" -}}
{{- range .Methods -}}
{{- if .HasRequest }}
::fidl::fuzzing::DecoderEncoderImpl<{{ .WireRequest }}>,
{{- end -}}
{{- if .HasResponse }}
::fidl::fuzzing::DecoderEncoderImpl<{{ .WireResponse }}>,
{{- end -}}
{{- end -}}
{{- end -}}
`