#pragma once #include #include #include namespace hello { // Print a greeting for the specified name into the specified // stream. Throw std::invalid_argument if the name is empty. // LIBHELLO_SYMEXPORT void say_hello (std::ostream&, const std::string& name); }