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.

28 lines
321 B

//
// Created by Marek Kotewicz on 27/04/15.
//
#pragma once
namespace dev
{
namespace eth
{
10 years ago
class JSValue
{
public:
virtual const char* asCString() const = 0;
};
template <typename T>
class JSEngine
{
public:
// should be used to evalute javascript expression
10 years ago
virtual T eval(const char* _cstr) const = 0;
};
}
}