libasio/include/asio/asio.hxx
2023-07-13 09:29:01 +02:00

16 lines
306 B
C++

#pragma once
#include <iosfwd>
#include <string>
#include <asio/export.hxx>
namespace asio
{
// Print a greeting for the specified name into the specified
// stream. Throw std::invalid_argument if the name is empty.
//
ASIO_SYMEXPORT void
say_hello (std::ostream&, const std::string& name);
}