Remove boost::noncopyable use & boost::random dependency (#4776)

The use has been removed from the following files:
* Atomic.hpp
* SignalVector.hpp
* Benchmark.hpp
* IvrApi
* LoggingChannel.hpp
* Singleton.hpp
* Image.hpp
* PrecompiledHeader.hpp
* Message.hpp
* MessageElement.hpp
* MessageLayout.hpp
* MessageLayoutElement.hpp
* Fonts.hpp (just include)
This commit is contained in:
pajlada
2023-09-09 12:23:20 +02:00
committed by GitHub
parent ba440e0ccb
commit 877a4e05fa
17 changed files with 92 additions and 35 deletions
+7 -2
View File
@@ -2,7 +2,6 @@
#include "debug/AssertInGuiThread.hpp"
#include <boost/noncopyable.hpp>
#include <pajlada/signals/signal.hpp>
#include <QStandardItemModel>
#include <QTimer>
@@ -19,7 +18,7 @@ struct SignalVectorItemEvent {
};
template <typename T>
class SignalVector : boost::noncopyable
class SignalVector
{
public:
pajlada::Signals::Signal<SignalVectorItemEvent<T>> itemInserted;
@@ -42,6 +41,12 @@ public:
this->itemCompare_ = std::move(compare);
}
SignalVector(const SignalVector &) = delete;
SignalVector &operator=(const SignalVector &) = delete;
SignalVector(SignalVector &&) = delete;
SignalVector &operator=(SignalVector &&) = delete;
bool isSorted() const
{
return bool(this->itemCompare_);