mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
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
|