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.

26 lines
346 B

10 years ago
//
// Created by Marek Kotewicz on 28/04/15.
//
#pragma once
10 years ago
#include "JSPrinter.h"
10 years ago
#include "JSV8Engine.h"
namespace dev
{
namespace eth
{
class JSV8Printer : public JSPrinter<JSV8Value>
10 years ago
{
public:
JSV8Printer(JSV8Engine const& _engine);
10 years ago
const char* prettyPrint(JSV8Value const& _value) const;
10 years ago
private:
JSV8Engine const& m_engine;
10 years ago
};
}
}