1
0
mirror of https://github.com/xmrig/xmrig.git synced 2025-12-14 18:42:39 -05:00

Added HttpClient class.

This commit is contained in:
XMRig
2019-04-09 01:59:22 +07:00
parent 35d868fb48
commit 241383068c
17 changed files with 421 additions and 153 deletions

View File

@@ -29,13 +29,13 @@
namespace xmrig {
template<typename T>
template<typename REQ>
class Baton
{
public:
inline Baton() { req.data = this; }
T req;
REQ req;
};