mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
e4fc6c25e6
It's a templated wrapper for std::vector with an overloaded `operator=` which triggers a signal.
35 lines
513 B
C++
35 lines
513 B
C++
#pragma once
|
|
|
|
#include <pajlada/signals/signal.hpp>
|
|
|
|
#include <mutex>
|
|
#include <vector>
|
|
|
|
namespace chatterino {
|
|
|
|
template <typename TValue>
|
|
class SignalVector
|
|
{
|
|
public:
|
|
SignalVector &operator=(std::vector<TValue> &other)
|
|
{
|
|
this->data = other;
|
|
|
|
this->updated.invoke();
|
|
|
|
return *this;
|
|
}
|
|
|
|
operator std::vector<TValue> &()
|
|
{
|
|
return this->data;
|
|
}
|
|
|
|
pajlada::Signals::NoArgSignal updated;
|
|
|
|
private:
|
|
std::vector<TValue> data;
|
|
};
|
|
|
|
} // namespace chatterino
|