mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Moved cpp code to src/cpp and js code to src/js.
This commit is contained in:
35
src/cpp/ripple/Contract.cpp
Normal file
35
src/cpp/ripple/Contract.cpp
Normal file
@@ -0,0 +1,35 @@
|
||||
#include "Contract.h"
|
||||
#include "Interpreter.h"
|
||||
|
||||
using namespace Script;
|
||||
/*
|
||||
JED: V III
|
||||
*/
|
||||
|
||||
Contract::Contract()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
void Contract::executeCreate()
|
||||
{
|
||||
|
||||
}
|
||||
void Contract::executeRemove()
|
||||
{
|
||||
|
||||
}
|
||||
void Contract::executeFund()
|
||||
{
|
||||
|
||||
}
|
||||
void Contract::executeAccept()
|
||||
{
|
||||
//std::vector<char> code;
|
||||
|
||||
//Interpreter interpreter;
|
||||
//interpreter.interpret(this,code);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user