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
455 B
23 lines
455 B
// this file is autogenerated, do not modify!!!
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include "${ETH_RESOURCE_NAME}.h"
|
|
|
|
using namespace std;
|
|
using namespace dev;
|
|
using namespace dev::eth;
|
|
|
|
${ETH_RESOURCE_NAME}::${ETH_RESOURCE_NAME}()
|
|
{
|
|
${ETH_RESULT_DATA}
|
|
${ETH_RESULT_INIT}
|
|
}
|
|
|
|
string ${ETH_RESOURCE_NAME}::loadResourceAsString(string _name)
|
|
{
|
|
ostringstream bistream;
|
|
bistream.write(eth_resources[_name], eth_sizes[_name]);
|
|
return bistream.str();
|
|
}
|
|
|
|
|