mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 05:49:11 +01:00
fdf3f25a0a
64fb0ac
Declare single-argument (non-converting) constructors "explicit" (practicalswift)
Pull request description:
Declare single-argument (non-converting) constructors `explicit`.
In order to avoid unintended implicit conversions.
For a more thorough discussion, see ["C.46: By default, declare single-argument constructors explicit"](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#c46-by-default-declare-single-argument-constructors-explicit) in the C++ Core Guidelines (Stroustrup & Sutter).
Tree-SHA512: e0c6922e56b11fa402621a38656d8b1122d16dd8f160e78626385373cf184ac7f26cb4c1851eca47e9b0dbd5e924e39a85c3cbdcb627a05ee3a655ecf5f7a0f1
31 lines
544 B
C++
31 lines
544 B
C++
#ifndef BITCOIN_QT_CALLBACK_H
|
|
#define BITCOIN_QT_CALLBACK_H
|
|
|
|
#include <QObject>
|
|
|
|
class Callback : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public Q_SLOTS:
|
|
virtual void call() = 0;
|
|
};
|
|
|
|
template <typename F>
|
|
class FunctionCallback : public Callback
|
|
{
|
|
F f;
|
|
|
|
public:
|
|
explicit FunctionCallback(F f_) : f(std::move(f_)) {}
|
|
~FunctionCallback() override {}
|
|
void call() override { f(this); }
|
|
};
|
|
|
|
template <typename F>
|
|
FunctionCallback<F>* makeCallback(F f)
|
|
{
|
|
return new FunctionCallback<F>(std::move(f));
|
|
}
|
|
|
|
#endif // BITCOIN_QT_CALLBACK_H
|