blob: bc7d90f32ef752d2877a3f0805497bb5d2f0de43 [file] [log] [blame] [edit]
// 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 EXAMPLES_COMPONENTS_ECHO_CPP_ECHO_COMPONENT_H_
#define EXAMPLES_COMPONENTS_ECHO_CPP_ECHO_COMPONENT_H_
#include <string>
#include <vector>
namespace echo {
std::string greeting(std::vector<std::string>& names);
} // namespace echo
#endif // EXAMPLES_COMPONENTS_ECHO_CPP_ECHO_COMPONENT_H_