Files
xahaud/src/cpp/ripple/Contract.cpp
Vinnie Falco d9f222fa83 Strip includes
2013-06-19 16:23:04 -07:00

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