Код: Выделить всё
/* getval.h */
#include
std::string const & getVal(std::string const & key);
Код: Выделить всё
/* main.cpp */
#include "getval.h"
#include
void f()
{
std::string key{"x"};
std::string const &s = getVal(key);
std::cout 123
Подробнее здесь: https://stackoverflow.com/questions/787 ... pending-on