blob: 645957cbc9240dd5c271e4518f2dc3b69f678323 [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_