copy/libcopy-test/copy-test.hxx

16 lines
327 B
C++
Raw Permalink Normal View History

2024-09-01 23:43:44 +00:00
#pragma once
#include <iosfwd>
#include <string>
#include <libcopy-test/export.hxx>
namespace copy_test
{
// Print a greeting for the specified name into the specified
// stream. Throw std::invalid_argument if the name is empty.
//
LIBCOPY_TEST_SYMEXPORT void
say_hello (std::ostream&, const std::string& name);
}