blob: 555d1779360ec70c9c5a4cb10c65af5a52ec75ec [file] [log] [blame]
#ifndef EXAMPLES_CPP_HELLO_LIB_H_
#define EXAMPLES_CPP_HELLO_LIB_H_
#include <string>
#include <memory>
namespace hello {
class HelloLib {
public:
HelloLib();
explicit HelloLib(const std::string &greeting);
void greet(const std::string &thing);
private:
std::unique_ptr<const std::string> greeting_;
};
} // namespace hello
#endif // EXAMPLES_CPP_HELLO_LIB_H_