libasio/include/asio/asio.hxx

16 lines
306 B
C++
Raw Normal View History

2023-07-13 07:29:01 +00:00
#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);
}