#pragma once #include #include namespace xmrstak { struct IBackend { std::atomic iHashCount; std::atomic iTimestamp; IBackend() : iHashCount(0), iTimestamp(0) { } }; } // namepsace xmrstak