mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
Remove direct bitcoin calls from qt/bitcoin.cpp
This commit is contained in:
parent
ea73b84d2d
commit
71e0d90876
6 changed files with 215 additions and 47 deletions
33
src/interface/handler.cpp
Normal file
33
src/interface/handler.cpp
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
// Copyright (c) 2018 The Bitcoin Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#include <interface/handler.h>
|
||||
|
||||
#include <util.h>
|
||||
|
||||
#include <boost/signals2/connection.hpp>
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
namespace interface {
|
||||
namespace {
|
||||
|
||||
class HandlerImpl : public Handler
|
||||
{
|
||||
public:
|
||||
HandlerImpl(boost::signals2::connection connection) : m_connection(std::move(connection)) {}
|
||||
|
||||
void disconnect() override { m_connection.disconnect(); }
|
||||
|
||||
boost::signals2::scoped_connection m_connection;
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
||||
std::unique_ptr<Handler> MakeHandler(boost::signals2::connection connection)
|
||||
{
|
||||
return MakeUnique<HandlerImpl>(std::move(connection));
|
||||
}
|
||||
|
||||
} // namespace interface
|
||||
Loading…
Add table
Add a link
Reference in a new issue