ipfs-chromium
Loading...
Searching...
No Matches
include
vocab
stringify.h
1
#ifndef IPFS_STRINGIFY_H_
2
#define IPFS_STRINGIFY_H_
3
4
#include <sstream>
5
6
namespace
ipfs {
7
namespace
{
8
template
<
class
T>
9
std::string Stringify(T
const
& t) {
10
std::ostringstream oss;
11
oss << t;
12
return
oss.str();
13
}
14
}
// namespace
15
}
// namespace ipfs
16
17
#endif
// IPFS_STRINGIFY_H_
Generated by
1.9.8