mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
34 lines
502 B
C++
34 lines
502 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
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
|