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