Update Signals and Console.

This commit is contained in:
XMRig 2020-12-03 12:06:18 +07:00
parent 86795aa5b7
commit 0a27c6d6af
No known key found for this signature in database
GPG key ID: 446A53638BE94409
7 changed files with 80 additions and 101 deletions

View file

@ -32,6 +32,9 @@
#include "base/tools/Object.h"
#include <memory>
namespace xmrig {
@ -60,9 +63,9 @@ private:
bool background(int &rc);
void close();
Console *m_console = nullptr;
Controller *m_controller = nullptr;
Signals *m_signals = nullptr;
std::shared_ptr<Console> m_console;
std::shared_ptr<Controller> m_controller;
std::shared_ptr<Signals> m_signals;
};