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
233 B
15 lines
233 B
11 years ago
|
#pragma once
|
||
|
|
||
|
#include <sstream>
|
||
|
#include "foreign.h"
|
||
|
|
||
|
namespace eth
|
||
|
{
|
||
|
|
||
|
typedef uint8_t byte;
|
||
|
typedef foreign<byte> Bytes;
|
||
|
|
||
|
template <class _T> std::string toString(_T const& _t) { std::ostringstream o; o << _t; return o.str(); }
|
||
|
|
||
|
}
|