Job flow WIP.

This commit is contained in:
XMRig 2017-06-11 06:52:23 +03:00
parent bcef4b12ec
commit 3ad11685cc
14 changed files with 126 additions and 25 deletions

View file

@ -25,6 +25,9 @@
#define __WORKER_H__
#include <stdint.h>
#include "interfaces/IWorker.h"
@ -39,9 +42,11 @@ public:
~Worker();
protected:
bool m_nicehash;
cryptonight_ctx *m_ctx;
Handle *m_handle;
int m_id;
uint64_t m_sequence;
};