peerplays_migrated/programs/full_web_node/BlockChain.hpp
Nathan Hourt 4906882895 [FWN] Start full node and listen on 8090
Not yet working, but it's progress!
2015-08-12 15:47:04 -04:00

22 lines
392 B
C++

#pragma once
#include <QObject>
class QTimer;
class QThread;
namespace fc { class thread; }
namespace graphene { namespace app { class application; } }
class BlockChain : public QObject {
Q_OBJECT
fc::thread& chainThread;
QTimer* fcTaskScheduler;
graphene::app::application* grapheneApp;
public:
BlockChain();
virtual ~BlockChain();
public Q_SLOTS:
void start();
};