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.

23 lines
241 B

10 years ago
//
// Created by Marek Kotewicz on 28/04/15.
//
#pragma once
#include "JSEngine.h"
namespace dev
{
namespace eth
{
class JSPrinter
{
public:
virtual const char* print(JSValue const& _value) const { return _value.asCString(); }
};
}
}