blob: 5673111cfc91c81faeb358b4d96c98699e6d905f [file] [log] [blame]
#include "static.hpp"
#include <string>
Static::Static() : str("This is a C++ string from a static library.") {}
std::string
Static::GetString() {
return str;
}