copy/libcopy-test/copy-test.hxx
RYAN 67a74bb7bb
Some checks failed
on-push / build-and-test (push) Failing after 7s
wip
2024-09-02 01:43:44 +02:00

16 lines
327 B
C++

#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);
}