blob: bea3b1ba00fec112c672ea7b21d978f3d3301afb [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.
#ifndef FUCHSIA_SDK_EXAMPLES_ECHO_ECHO_COMPONENT_H_
#define FUCHSIA_SDK_EXAMPLES_ECHO_ECHO_COMPONENT_H_
// [START greeting]
#include <string>
#include <vector>
namespace echo {
std::string greeting(std::vector<std::string>& names);
} // namespace echo
// [END greeting]
#endif // FUCHSIA_SDK_EXAMPLES_ECHO_ECHO_COMPONENT_H_