5 #ifndef BITCOIN_INTERFACES_ECHO_H 6 #define BITCOIN_INTERFACES_ECHO_H 19 virtual std::string
echo(
const std::string&
echo) = 0;
26 #endif // BITCOIN_INTERFACES_ECHO_H std::unique_ptr< Echo > MakeEcho()
Return implementation of Echo interface.
virtual std::string echo(const std::string &echo)=0
Echo provided string.
Simple string echoing interface for testing.