Added hwloc version display.

This commit is contained in:
XMRig 2019-07-23 07:45:00 +07:00
parent b27fc6fd5d
commit 4263c6c381
4 changed files with 56 additions and 36 deletions

View file

@ -5,7 +5,8 @@
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
* Copyright 2016-2018 XMRig <https://github.com/xmrig>, <support@xmrig.com>
* Copyright 2018-2019 SChernykh <https://github.com/SChernykh>
* Copyright 2016-2019 XMRig <https://github.com/xmrig>, <support@xmrig.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -21,20 +22,24 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SUMMARY_H__
#define __SUMMARY_H__
#ifndef XMRIG_SUMMARY_H
#define XMRIG_SUMMARY_H
namespace xmrig {
class Controller;
}
class Controller;
class Summary
{
public:
static void print(xmrig::Controller *controller);
static void print(Controller *controller);
};
#endif /* __SUMMARY_H__ */
} // namespace xmrig
#endif /* XMRIG_SUMMARY_H */