mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
17 lines
389 B
C++
17 lines
389 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_RIPPLEMAIN_H_INCLUDED
|
|
#define RIPPLE_RIPPLEMAIN_H_INCLUDED
|
|
|
|
class RippleMain : public Main
|
|
{
|
|
public:
|
|
int run (int argc, char const* const* argv);
|
|
};
|
|
|
|
#endif
|