От: | sanx | ||
Дата: | 01.03.13 19:28 | ||
Оценка: |
bool func(const type ¶m, std::string &result)
{
std::string s;
// формируем/получаем s
if (ok)
result.swap(s);
return ok;
}
bool func(const type ¶m, std::string &result)
{
std::string s;
// формируем/получаем s
if (ok)
result.assign(s);
return ok;
}
bool func(const type ¶m, std::string &result)
{
// формируем/получаем используя result
return ok;
}