blob: b7aab0ff8077cc3b8533dd7f56d16152bc0792c7 [file] [log] [blame]
// Copyright 2020 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.
#ifndef SRC_LIB_FOSTR_FIDL_FUCHSIA_FEEDBACK_AMENDMENTS_H_
#define SRC_LIB_FOSTR_FIDL_FUCHSIA_FEEDBACK_AMENDMENTS_H_
#include <fuchsia/feedback/cpp/fidl.h>
#include <ostream>
namespace fuchsia {
namespace feedback {
// NOTE:
// //src/lib/fostr/fidl/fuchsia.feedback automatically generates ostream
// formatters for fuchsia.feedback *except* those formatters that are listed here.
// The code generator knows which formatters to exclude from the generated code
// by consulting the 'amendments.json' file.
//
// If you add or remove formatters from this file, please be sure that the
// amendments.json file is updated accordingly.
std::ostream& operator<<(std::ostream& os, const Annotation& value);
std::ostream& operator<<(std::ostream& os, const ComponentData& value);
} // namespace feedback
} // namespace fuchsia
#endif // SRC_LIB_FOSTR_FIDL_FUCHSIA_FEEDBACK_AMENDMENTS_H_