#pragma once #include "xmrstak/backend/globalStates.hpp" #include #include #include namespace xmrstak { struct iBackend { std::atomic iHashCount; std::atomic iTimestamp; uint32_t iThreadNo; iBackend() : iHashCount(0), iTimestamp(0) { } }; } // namepsace xmrstak