Files
xahaud/src/cpp/ripple/Contract.cpp
Arthur Britto a2abddff4f Cosmetic.
2013-01-12 21:39:24 -08:00

36 lines
365 B
C++

#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);
}
// vim:ts=4