
* New XMRigCCServer without dependencies and now with full TLS support on Windows * Dashboard * Added all columns to the dashboard * Dynamic table view (column visibility) * Grouping by Algo * GZIP compression for the whole traffic * Full Rebase on XMRig 3.2.0 * Final randomX/0 (XMR) * Coin config * Bugfixes
30 lines
991 B
C++
30 lines
991 B
C++
/* XMRigCC
|
|
* Copyright 2019- BenDr0id <https://github.com/BenDr0id>, <ben@graef.in>
|
|
*
|
|
* 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
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef XMRIGCC_SUMMARY_H
|
|
#define XMRIGCC_SUMMARY_H
|
|
|
|
#include <memory>
|
|
#include "CCServerConfig.h"
|
|
|
|
class Summary
|
|
{
|
|
public:
|
|
static void print(const std::shared_ptr<CCServerConfig>& config);
|
|
};
|
|
|
|
#endif /* XMRIGCC_SUMMARY_H */
|