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.
25 lines
346 B
25 lines
346 B
//
|
|
// Created by Marek Kotewicz on 28/04/15.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "JSPrinter.h"
|
|
#include "JSV8Engine.h"
|
|
|
|
namespace dev
|
|
{
|
|
namespace eth
|
|
{
|
|
|
|
class JSV8Printer : public JSPrinter<JSV8Value>
|
|
{
|
|
public:
|
|
JSV8Printer(JSV8Engine const& _engine);
|
|
const char* prettyPrint(JSV8Value const& _value) const;
|
|
private:
|
|
JSV8Engine const& m_engine;
|
|
};
|
|
|
|
}
|
|
}
|
|
|