You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
273 B
15 lines
273 B
#pragma once
|
|
|
|
#include <sstream>
|
|
#include "foreign.h"
|
|
|
|
namespace eth
|
|
{
|
|
|
|
typedef uint8_t byte;
|
|
typedef foreign<byte> Bytes;
|
|
typedef foreign<byte const> ConstBytes;
|
|
|
|
template <class _T> std::string toString(_T const& _t) { std::ostringstream o; o << _t; return o.str(); }
|
|
|
|
}
|
|
|